add pretty print

This commit is contained in:
nora 2022-01-04 23:09:18 +01:00
parent 1a77e710d5
commit 76af14a9f4
11 changed files with 114 additions and 5 deletions

View file

@ -1,7 +1,6 @@
let i = 0;
while i < 100 {
print i;
while i < 100000 {
i = i + 1;
}