Basic syntax

Variables

int x = 10
string name = "Beetle"

Conditionals

if x > 5 {
    print("Greater than 5")
}

Loops

for i in 0..10 {
    print(i)
}