anglais/examples/hello.ang

11 lines
184 B
Text

println("Hello world!")
a := 1 + 2
println(a)
if a > 2 {
println("Hooray!! a is greater than 2!!!!")
} else {
println("oh nooo!!! a is less than or equal to 2!!!!!!!!!!")
}