12 lines
86 B
INI
12 lines
86 B
INI
|
|
[ func;
|
||
|
|
print "Hello^";
|
||
|
|
];
|
||
|
|
|
||
|
|
[ call_func x;
|
||
|
|
x();
|
||
|
|
];
|
||
|
|
|
||
|
|
[ Main;
|
||
|
|
call_func(func);
|
||
|
|
];
|