Skip to content
Snippets Groups Projects
Commit 0c680f34 authored by lang0909's avatar lang0909
Browse files

Add third sample file for interpreter operation

parent 09994f85
No related branches found
No related tags found
No related merge requests found
Pipeline #2142 canceled
a=10;
b=20;
c=30;
d=40;
if(a<b)
{
if(c<d)
max = a;
else
max = b;
}
else
max = c;
print max;
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment