Files
brolang/examples/programs/mutable_local/main.bro
T

6 lines
70 B
Plaintext

main func() i32 {
value := i32(1)
value = value + 2
return value
}