diff --git a/03_variables/types.v b/03_variables/types.v new file mode 100644 index 0000000..3ad2009 --- /dev/null +++ b/03_variables/types.v @@ -0,0 +1,12 @@ + + + +fn main() +{ + mut integer := int(20) + mut flt32 := f32(2) + mut flt64 := f64(3) + + println(flt32) + println(integer) +} \ No newline at end of file diff --git a/04_conditions/main.v b/04_conditions/main.v index 8f71fa1..bc4e457 100644 --- a/04_conditions/main.v +++ b/04_conditions/main.v @@ -1,6 +1,3 @@ - - - pub fn main() { println('oi') } \ No newline at end of file