Tree


.gitignorecommits | blame
.rustfmt.tomlcommits | blame
Cargo.lockcommits | blame
Cargo.tomlcommits | blame
LICENSEcommits | blame
Makefilecommits | blame
PLAN.mdcommits | blame
README.mdcommits | blame
src/
tests/

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).