High Performance
Leverages LLVM for optimized machine code generation.
Combine the performance and control of low-level languages with the simplicity and safety of modern syntax.
fn main(): void {
let limit: i32 = 10
printf("Counting to %d:\n", limit)
for (let i: i32 = 1; i <= limit; i++) {
if (i % 2 == 0) {
printf("%d is even\n", i)
} else {
printf("%d is odd\n", i)
}
}
}Stride is currently in active development. Core language features like primitive types, functions, and control flow are stable. More advanced features like full struct support, imports, and a comprehensive standard library are currently being implemented.