Nexis is a modern, modular programming language designed for clarity and simplicity. It features a straightforward syntax with static typing and module-based organization.
- Module-based code organization
- Static typing
- First-class functions
- Built-in standard library
- Clear and concise syntax
- Support for basic control flow (if/else)
module Main {
func main() {
let message: string = "Hello, World!";
print(message);
}
}
See example.nx