Post-Cancellation, Pre-Nisei Netrunner Rotation
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
494B

  1. module ViewUtils where
  2. {---
  3. - ViewUtils Module
  4. -
  5. - Your guess is as good as mine why this is its own thing
  6. - gotta get the month I guess
  7. -
  8. - Shaun Kerr
  9. -}
  10. import Timestamp
  11. showMonth :: Integer -> String
  12. showMonth 1 = "January"
  13. showMonth 2 = "February"
  14. showMonth 3 = "March"
  15. showMonth 4 = "April"
  16. showMonth 5 = "May"
  17. showMonth 6 = "June"
  18. showMonth 7 = "July"
  19. showMonth 8 = "August"
  20. showMonth 9 = "September"
  21. showMonth 10 = "October"
  22. showMonth 11 = "November"
  23. showMonth 12 = "December"