This file has been truncated, but you can view the full file.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- Brought to you by `https://github.com/Rerumu/Wasynth` | |
local Integer = (function() | |
local Numeric = {} | |
local NUM_ZERO, NUM_ONE, NUM_SIX_FOUR | |
local NUM_BIT_26, NUM_BIT_52 | |
local bit_lshift = bit32.lshift | |
local bit_rshift = bit32.rshift |
This file has been truncated, but you can view the full file.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- Roblox's Luau as a LuaJIT 2.1.0 command line script | |
-- Translated using https://github.com/Rerumu/Wasynth | |
local rt = (function() | |
local module = {} | |
local bit = require("bit") | |
local ffi = require("ffi") | |
local u32 = ffi.typeof("uint32_t") | |
local u64 = ffi.typeof("uint64_t") |
This file has been truncated, but you can view the full file.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- Roblox's Luau as a Luau script | |
-- Translated using https://github.com/Rerumu/Wasynth | |
local luau_script = [[ | |
print("Hello, World!") | |
]] | |
local Integer = (function() | |
local Numeric = {} | |
local NUM_ZERO, NUM_ONE, NUM_SIX_FOUR |