repo.or.cz
/
tinyjs-rewrite.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
formatting 90% done; encapsulated everything in the TinyJS namespace, and renamed...
[tinyjs-rewrite.git]
/
.svn
/
pristine
/
b4
/
b41d60923c68b1fb7bf388e77d888992811b8a49.svn-base
blob
9a43bc6590658a22896303fe9aa96c9b61147547
1
// simple function scoping test
2
var a = 7;
3
function add(x,y) { var a=x+y; return a; }
4
result = add(3,6)==9 && a==7;