Add code in 03_variables folder

This commit is contained in:
Vinicius Silva 2023-12-22 00:55:28 -03:00
parent 55b0675b75
commit 4a33bcdf16
1 changed files with 18 additions and 1 deletions

View File

@ -16,5 +16,22 @@ pub fn main()
mutable = pi
print('${mutable}\n')
a, c, d := 3, 2, 5
mut i, mut j := 'Hi', 'Hello'
println("${a} ${c} ${d}")
println("${i} ${j}")
mut greet := 'Here'
greet = greet + ' there and Everywhere'
println("${greet}")
greet += ' Hope yout have a great day!'
print("${greet}")
}