Advertisement
Guest User

Untitled

a guest
Jan 16th, 2020
175
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Nim 0.94 KB | None | 0 0
  1. /* Generated by the Nim Compiler v1.0.4 */
  2. /*   (c) 2019 Andreas Rumpf */
  3.  
  4. var framePtr = null;
  5. var excHandler = 0;
  6. var lastJSError = null;
  7. if (typeof Int8Array === 'undefined') Int8Array = Array;
  8. if (typeof Int16Array === 'undefined') Int16Array = Array;
  9. if (typeof Int32Array === 'undefined') Int32Array = Array;
  10. if (typeof Uint8Array === 'undefined') Uint8Array = Array;
  11. if (typeof Uint16Array === 'undefined') Uint16Array = Array;
  12. if (typeof Uint32Array === 'undefined') Uint32Array = Array;
  13. if (typeof Float32Array === 'undefined') Float32Array = Array;
  14. if (typeof Float64Array === 'undefined') Float64Array = Array;
  15. var nim_program_result = 0;
  16. var global_raise_hook_62618 = [null];
  17. var local_raise_hook_62623 = [null];
  18. var out_of_mem_hook_62626 = [null];
  19.   if (!Math.trunc) {
  20.     Math.trunc = function(v) {
  21.       v = +v;
  22.       if (!isFinite(v)) return v;
  23.  
  24.       return (v - v % 1)   ||   (v < 0 ? -0 : v === 0 ? v : 0);
  25.     };
  26.   }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement