10 lines
74 B
Plaintext
10 lines
74 B
Plaintext
def hi {
|
|
x=10;
|
|
puts(x);
|
|
return x;
|
|
}
|
|
x=15;
|
|
y=hi();
|
|
puts(x);
|
|
puts(y);
|