Skip to content

Instantly share code, notes, and snippets.

View MuzzyDeath's full-sized avatar

Greg J. MuzzyDeath

View GitHub Profile
@MuzzyDeath
MuzzyDeath / Coding-Chaos-2021
Last active March 2, 2021 02:22
The Haskell coding prompt for WellHidden's Skire 2021 Coding Chaos!
Use (http://learnyouahaskell.com/chapters) to learn how to do these problems!
Remember, if you add a function to your .hs file, then you need to load it into your ghci EVERYTIME you make a change.
Do this with `:l <filename>.hs` in your shell.
Question 1:
In the shell, add 3 and 5 together without using functions.
HINT: Use the addition operator `+`.
Question 2: