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