RosettaCodeData/Task/Higher-order-functions/Inform-6/higher-order-functions.inf

12 lines
86 B
INI
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
[ func;
print "Hello^";
];
[ call_func x;
x();
];
[ Main;
call_func(func);
];