1
0

js_impl.txt 226 B

1234567891011121314151617181920212223242526
  1. "foobar"
  2. 123123
  3. symb() (symb)
  4. foo.bar() (call (lookup foo "bar"))
  5. function(a,b,c) {
  6. return c;
  7. }
  8. (fn a b c c)
  9. if (a) {
  10. return 1;
  11. }
  12. (if a 1 js_undef)
  13. var x = [1,2,3];
  14. (let x (vec 1 2 3))
  15. ------------------