Files
xsh/deps/luau/src/VM/lcorolib.zig
T

8 lines
143 B
Zig
Raw Normal View History

2026-08-23 11:11:36 +03:00
const c = @import("c");
const lua = @import("lua.zig");
pub inline fn open(L: *lua.State) void {
_ = c.luaopen_coroutine(@ptrCast(L));
}