myjs.jslib 229 B

12345678910111213141516171819
  1. mergeInto(LibraryManager.library,
  2. {
  3. Hello: function ()
  4. {
  5. Test01();
  6. },
  7. HelloString: function (str)
  8. {
  9. window.alert(Pointer_stringify(str));
  10. },
  11. HelloFloat: function ()
  12. {
  13. return 1;
  14. },
  15. });