resources/RooUsage.txt
[app.Builder.js] / tests / hello.js
index aa54147..d83b3ea 100644 (file)
@@ -1,6 +1,7 @@
 
 function hello(w) {
-       var a = JSON.decode(w);
-       return JSON.stringify(w)+'xx';
+       var a = JSON.parse(w);
+       a.test=1;
+       return JSON.stringify(a)+'xxa';
 
 }