mirror of
https://github.com/lune-org/lune.git
synced 2025-05-04 10:43:57 +01:00
8 lines
228 B
Lua
8 lines
228 B
Lua
local luau = require("@lune/luau")
|
|
|
|
assert(type(luau.compile) == "function", "expected `luau.compile` to be a function")
|
|
|
|
assert(
|
|
type(luau.compile("do end")) == "string",
|
|
"expected `luau.compile` to return bytecode string"
|
|
)
|