My friend Gabe wrote a blog post about learning a new programming language. The project creates (bad) puns by replacing words in phrases with a word that rhymes e.x. off to a good start
becomes off to a good heart
. This is an elm implimentation of that.
To run:
- Clone the repo
- Install the dependencies by running
yarn
- Build the HTML:
yarn elm make src/Main.elm
. This createsindex.html
- Get the
index.html
on a server somewhere, or start a local server - Visit the page and enter a word like
fun
oryes
orheart
.
Thanks @gabebw for writing the post and laying out all of the steps needed to complete the project. Huge thanks to @thestrabusiness, @JoelQ, @joshuaclayton, and @gnfisher for reviewing and pairing on the code.
Critique welcome.