Skip to content

Instantly share code, notes, and snippets.

@jadlr
Last active March 24, 2016 19:42
Show Gist options
  • Save jadlr/deb464087396eaccb5fc to your computer and use it in GitHub Desktop.
Save jadlr/deb464087396eaccb5fc to your computer and use it in GitHub Desktop.
module LeftPad where
leftPad :: Int -> Char -> String -> String
leftPad n c x
| n > length x = leftPad n c (c : x)
| otherwise = x
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment