RosettaCodeData/Task/Repeat/PARI-GP/repeat.parigp
2023-07-01 13:44:08 -04:00

2 lines
59 B
Text

repeat(f, n)=for(i=1,n,f());
repeat( ()->print("Hi!"), 2);