Regression tests in interpretation only

This commit is contained in:
Dmitry Boulytchev 2019-09-19 15:52:20 +03:00
parent 1cfd3123be
commit 5527013a7f
15 changed files with 38 additions and 28 deletions

View file

@ -1,4 +1,5 @@
fun test (n, m) local i, s {
fun test (n, m) {
local i, s;
s := 0;
for i := 0, i <= n, i := i + 1 do
s := s + i;