Fix mixed indentation in the README

This makes the Loop example script display correctly on GitHub.
This commit is contained in:
Hugo Locurcio 2019-09-09 17:21:26 +02:00
parent daadb4c9ef
commit e3bee78030
No known key found for this signature in database
GPG Key ID: 39E8F8BE30B0A49C

View File

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