RosettaCodeData/Task/Repeat/PARI-GP/repeat.parigp

3 lines
59 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
repeat(f, n)=for(i=1,n,f());
repeat( ()->print("Hi!"), 2);