v3.4.0
Compile in milliseconds, execute instantly
Raw memory access without the complexity
Assembly power with modern readability
~ Simple LAML example
bring xcs.class34;
func main() {
val greeting = "Hello, World!";
say greeting;
}
Zero-cost abstractions with direct hardware access. LAML compiles to efficient machine code without runtime overhead.
Modern syntax with VS Code integration, run buttons, and clean output. Low-level programming made accessible.
Native support for Windows, Linux, and Android/Termux. One language, everywhere you need it.
Intuitive bring xcs.class34
imports, clean comment system with ~
, and readable low-level code.
curl -sSL https://laml.dev/install.sh | bash
echo 'bring xcs.class34; func main() { say "Hello!"; }' > hello.lm
laml run hello.lm