Lateralus is an open source programming language created in 2025 by bad-antics.
| #1656on PLDB | 1Years Old |
A pipeline-native programming language with compiler, VM, OS, LSP, and VS Code extension. Features algebraic data types, pattern matching, type inference, and borrow checking.
fn factorial(n: i32) -> i32 =
| 0 => 1
| n => n * factorial(n - 1)print "Hello, World!"| Feature | Supported | Example | Token |
|---|---|---|---|
| Algebraic Data Type | ✓ | ||
| Pattern Matching | ✓ | ||
| Type Inference | ✓ | ||
| Static Typing | ✓ | ||
| Line Comments | ✓ | // | |
| Comments | ✓ | ||
| Semantic Indentation | X |
github https://github.com/bad-antics/lateralus-lang
documentation https://grug-group420.github.io/docs
hasTyping true
hasBorrowChecking true
hasCompilerParts true