14 lines
113 B
Plaintext
14 lines
113 B
Plaintext
import stdio
|
|
|
|
def f(x, y, z)
|
|
g(x, 2)
|
|
end
|
|
|
|
def g(x, y)
|
|
x
|
|
end
|
|
|
|
def main()
|
|
printf("hi %d!\n", f(1, 2, 3))
|
|
end
|