boron-lang 0.19.0

A simple, efficient, compiled programming language.
1
2
3
4
5
6
7
8
9
10
11
12
13
# Testing the behavior of Boron structures

struct Person {
    int age
    flt height
}

Person john: {
    age 32 + 13
    height 6.0
}

print(john.age, john.height)