compiler/prg.lang
2018-07-20 19:44:57 -05:00

10 lines
74 B
Plaintext

def hi {
x=10;
puts(x);
return x;
}
x=15;
y=hi();
puts(x);
puts(y);