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

12 lines
86 B
INI
Raw Permalink Normal View History

2013-04-10 21:29:02 -07:00
[ func;
print "Hello^";
];
[ call_func x;
x();
];
[ Main;
call_func(func);
];