Guest User

Untitled

a guest
Jul 21st, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. //Abstract syntax tree
  2. rtstatement *s1 = new rtstatement;
  3. s1->append(new rtstring("io"), NULL);
  4. s1->append(new rtstring("print"), NULL);
  5.  
  6. rtcall *c1 = new rtcall;
  7. c1->append(new rtstring("Hello World!!!"), NULL);
  8. s1->append(c1, NULL);
  9.  
  10. //Runtime
  11. rtscope *natives = nativeModule();
  12. s1->execute(natives);
Add Comment
Please, Sign In to add comment