Skip to content

Instantly share code, notes, and snippets.

@Ariakenom
Created December 11, 2019 14:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Ariakenom/348aa24a714835e329c848031a21c50a to your computer and use it in GitHub Desktop.
Save Ariakenom/348aa24a714835e329c848031a21c50a to your computer and use it in GitHub Desktop.
loop :: Show a => Int -> a -> String;
loop 0 x = show x;
loop n x = loop (n-1) [x];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment