Start adding integer support for Luau

This commit is contained in:
Rerumu
2022-05-21 02:47:27 -04:00
parent 0366a74d0a
commit d5c9028be4
2 changed files with 248 additions and 140 deletions
+6 -1
View File
@@ -1,4 +1,9 @@
pub static RUNTIME: &str = include_str!("../runtime/runtime.lua");
pub static RUNTIME: &str = concat!(
"local I64 = (function() ",
include_str!("../runtime/numeric.lua"),
" end)()\n",
include_str!("../runtime/runtime.lua")
);
pub use translator::translate;