Created
May 13, 2019 21:23
-
-
Save MarcelineVQ/6b152db3f4b0023c4906f96ff641fe46 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| formatNat : Nat -> String | |
| formatNat n with (isLTE 10 n) | |
| formatNat n | (Yes prf) = "." ++ show (n - 10) | |
| formatNat n | (No contra) = show n |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment