mirror of
https://github.com/ProgramSnail/Lama.git
synced 2026-01-02 12:08:20 +00:00
Included lama compilation in root's make regression target
This commit is contained in:
parent
52ef663986
commit
89536c67e0
3240 changed files with 14640 additions and 6 deletions
17
lama-compiler/regression/test010.lama
Normal file
17
lama-compiler/regression/test010.lama
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
var i = 0, s = 0;
|
||||
|
||||
while i < 100
|
||||
do
|
||||
var j = 0;
|
||||
|
||||
while j < 100
|
||||
do
|
||||
s := s + j;
|
||||
j := j + 1
|
||||
od;
|
||||
|
||||
s := s + i;
|
||||
i := i + 1
|
||||
od;
|
||||
|
||||
write (s)
|
||||
Loading…
Add table
Add a link
Reference in a new issue