solilang 0.21.1

A statically-typed, class-based OOP language with pipeline operators
Documentation
1
2
3
4
5
6
7
8
9
10
// Hello World in Solilang
print("Hello, Solilang!");

// Basic arithmetic
let x = 5 + 3 * 2;
print("5 + 3 * 2 =", x);

// Variables with type annotation
let greeting: String = "Welcome";
print(greeting);