Included lama compilation in root's make regression target

This commit is contained in:
Egor Sheremetov 2023-09-04 13:25:12 +02:00
parent 52ef663986
commit 89536c67e0
3240 changed files with 14640 additions and 6 deletions

View file

@ -0,0 +1,17 @@
var x;
fun test (n, m) {
var i, s, continue = 1;
s := 0;
for i := 0, i <= n && continue, i := i + 1 do
s := s + i;
if s > m then continue := 0 fi
od;
s
}
x := read ();
write (test (10, 100));
write (test (100, 10))