Insert variable bool in variable.v

This commit is contained in:
Vinicius Silva 2023-12-22 22:40:06 -03:00
parent 8ee6b04ad6
commit 5abb3a7c14
1 changed files with 7 additions and 1 deletions

View File

@ -32,6 +32,12 @@ pub fn main()
greet += ' Hope yout have a great day!' greet += ' Hope yout have a great day!'
print("${greet}") println("${greet}")
mut is_false := false
mut is_true := true
println(is_false)
println(is_true)
} }