fork download
  1.  
  2. my_repeat a n = fix (a:) !! n
  3. where fix f = x where x = f x
  4.  
  5. main = print $ my_repeat 5 5
Success #stdin #stdout 0s 5572KB
stdin
Standard input is empty
stdout
5