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
commit 7d3306f6c7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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