Nyra Syntax
Blocks, statements, and naming.
Program entry
Nyra uses curly braces for blocks. Statements end at newline (no semicolons required). Function names use snake_case; types and structs use PascalCase.
fn main() {
print("Hello")
}fn main() -> void {
print("Hello")
}Output
Hello