Tree
- Tree:
51fd6838a13225e9f214fba4408ed3fb458447b6- Date:
- Message:
- Add integration tests for v0.1 Test suite covering all language features: arithmetic, strings, variables, if/else, while, for/range, functions with implicit/explicit return, type mismatch errors, and all CLI subcommands (run, tokenize, parse, compile).
README.md
# olang
Olivia Lang
````
fn main() {
let x = 42
let mut name: str = "world"
if x > 10 {
print("hello " + name)
}
for i in range(10) {
print(i)
}
let num = add(x, 1)
print(num)
}
fn add(a: int, b: int) -> int {
a + b
}
```
## License
ISC — see [LICENSE](LICENSE).
