compiler/prg.lang

10 lines
74 B
Plaintext
Raw Permalink Normal View History

2018-07-20 19:44:57 -05:00
def hi {
x=10;
puts(x);
return x;
}
x=15;
y=hi();
puts(x);
puts(y);