Merge pull request #85 from Calinou/fix-readme-mixed-indent

Fix mixed indentation in the README
This commit is contained in:
Jonathan Turner
2019-09-10 05:20:13 +12:00
committed by GitHub

View File

@@ -320,7 +320,7 @@ let x = 10;
loop {
print(x);
x = x - 1;
if x == 0 { break; }
if x == 0 { break; }
}
```