Tag: Elm

My blog posts about learning Elm. I am not doing any kind of pedagogical tutorial here. What I do is explore, and then try to explain.

  • Learning Elm: pipe tricks

    https://github.com/elm/compiler/tree/main/hints I found much of the content for this article at: https://sporto.gitbooks.io/elm-tutorial/content/en/01-foundations/02-functions.html Here’s now to create a learning environment where you can edit a file full of Elm code, and play with the code. Add the “.” directory to elm.json. This will tell Elm to search for modules in there: Next up, make the file…

  • Learning Elm

    I was having a hard time with the main tutorial, so I’m winding a different path through the language. 8/29: After doing the basics, I started hitting walls, and found the tutorial going all over the place, so I decided to dig through the Elm core libraries, and just try running commands: https://package.elm-lang.org/packages/elm/core/latest/ Typing things…