Functions as values (no closures yet, and no tests)

This commit is contained in:
Dmitry Boulytchev 2019-09-22 20:15:15 +03:00
parent f5b802ebed
commit d69cb3d49d
12 changed files with 194 additions and 160 deletions

View file

@ -1,11 +1,11 @@
global i, s, j;
global i, s;
i := 0;
s := 0;
while i < 100
do
j := 0;
local j = 0;
while j < 100
do