Skip to content
Snippets Groups Projects
Commit 821def8e authored by lang0909's avatar lang0909
Browse files

Add 5th sample file for interpreter operation

parent be6e7f42
No related branches found
No related tags found
No related merge requests found
Pipeline #2144 canceled
a=2;
b=3;
if(a!=b)
{
while(a<b)
{
b=b-1;
a=a+1;
}
print b;
}
else
print a;
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment