3 lines
59 B
Text
3 lines
59 B
Text
|
|
repeat(f, n)=for(i=1,n,f());
|
||
|
|
repeat( ()->print("Hi!"), 2);
|