6 lines
56 B
Text
6 lines
56 B
Text
|
|
runme(f)={
|
||
|
|
f()
|
||
|
|
};
|
||
|
|
|
||
|
|
runme( ()->print("Hello world!") )
|