formatting 90% done; encapsulated everything in the TinyJS namespace, and renamed...
[tinyjs-rewrite.git] / .svn / pristine / b4 / b41d60923c68b1fb7bf388e77d888992811b8a49.svn-base
blob9a43bc6590658a22896303fe9aa96c9b61147547
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;