__ __)
(, /| /
/ | / _ __ _
) / |/ (_(_/ (_(_(_
(_/ '
The ナラ Concept Programming Language
"Simplicity is the ultimate sophistication."
MANIFESTO
Nara is born from the desire to return to the basics. No bloated IDEs, no heavy runtimes. It is a compiled, statically typed language designed to feel like you never left the shell.
FEATURES
- + STARK_MINIMALISM
- + ZERO_DEPENDENCIES
- + COMPILED_TO_MACHINE_CODE
- + BUILT_IN_TEST_RUNNER
- + HOT_RELOAD_IN_TTY
VERSION_INFO
CURRENT_STABLE: v0.4.2
BUILD_DATE: 2026-01-29
STATUS: OPERATIONAL
MEMORY_USAGE: 85%
CODE_EXAMPLE
use Std::Http
fun main() {
val server = Http::Server::new()
defer server.close()
server.get("/") { res ->
res.text(
\\┌──────────────────┐
\\│ HELLO FROM NARA │
\\└──────────────────┘
)
}
print("Server running on port 3000...")
try server.listen(3000)
}