diff --git a/06_repetitions/for.v b/06_repetitions/for.v index d3f5b07..2849213 100644 --- a/06_repetitions/for.v +++ b/06_repetitions/for.v @@ -59,6 +59,10 @@ pub fn main() { } // ==================================== // + + for i in 0..5 { + print('${i} ') + } }