const app = http.new()
app.get("/", |req, res| {
res.json({
message: "Hello from REK",
timestamp: time.now()
})
})
app.listen(8080)
HTTP server, File System, and Environment modules are built directly into the binary. No external dependencies needed.
Kernel Gateway Interface allows REK to interact directly with low-level system resources with minimal overhead.
Clean, expression-oriented syntax inspired by Rust and JavaScript. Familiar yet powerful.