RosettaCodeData/Task/Higher-order-functions/MAXScript/higher-order-functions.max
2023-07-01 13:44:08 -04:00

11 lines
81 B
Text

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