RosettaCodeData/Task/Higher-order-functions/MAXScript/higher-order-functions.max

12 lines
81 B
Plaintext

fn second =
(
print "Second"
)
fn first func =
(
func()
)
first second