Parcourir la source

small style change

master
Martin Dørum il y a 3 ans
Parent
révision
2d7cc13732
1 fichiers modifiés avec 2 ajouts et 2 suppressions
  1. 2
    2
      test/examples/control-flow.l2

+ 2
- 2
test/examples/control-flow.l2 Voir le fichier

@@ -7,14 +7,14 @@ loop {
}

print "\nWith while this time"
i = 0
i := 0
while {i < 10} {
print "Hallo Wrodl"
i = i + 1
}

print "\nAnd with the for loop"
i = 0
i := 0
iter := {
j := i
i = i + 1

Chargement…
Annuler
Enregistrer