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