High-performance Luau runtime
packed with features & built for developers.
print("Hello World!")
$ zune run hello_world
Hello World!
local process = zune.process print(process.os) -- <Operating System> print(process.arch) -- <CPU Architecture>
$ zune run os_arch
Linux x86_64
local net = zune.net local server = net.serve({ port = 8080, request = function(req) return "Hello!"; end }) print("Http Server Running.")
$ zune run server
Http Server Running.
local testing = zune.testing local describe = testing.describe local expect = testing.expect local test = testing.test describe("Scope", function() test("Case", function() expect(1).toBe(1); end) end)
$ zune test test_cases
PASS Scope (Case) [0ms] Tests: 1 total Time: 0.001 s