From 5abb3a7c14fda34da47b3937413ea2b0e3e4dfc2 Mon Sep 17 00:00:00 2001 From: Vinicius Silva Date: Fri, 22 Dec 2023 22:40:06 -0300 Subject: [PATCH] Insert variable bool in variable.v --- 03_variables/values.v | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/03_variables/values.v b/03_variables/values.v index 51b1a01..e764003 100644 --- a/03_variables/values.v +++ b/03_variables/values.v @@ -32,6 +32,12 @@ pub fn main() 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) } \ No newline at end of file