11 lines
81 B
Text
11 lines
81 B
Text
fn second =
|
|
(
|
|
print "Second"
|
|
)
|
|
|
|
fn first func =
|
|
(
|
|
func()
|
|
)
|
|
|
|
first second
|