formatting 90% done; encapsulated everything in the TinyJS namespace, and renamed...
[tinyjs-rewrite.git] / .svn / pristine / 36 / 36ccd54d8a43c6c91b9225a7dccbdb302971aea8.svn-base
blobb0d55252c00895ddc3d182adf8e6511ac18991db
1 // functions in variables
2 var bob = {};
3 bob.add = function(x,y) { return x+y; };
5 result = bob.add(3,6)==9;