https://hexdocs.pm/snowball_stemmer/index.html
After being nerd sniped into doing this by Louis last week, I implemented the Porter2/Snowball English word stemming algorithm in Gleam! It works on all ~40k test words from the Snowball Project and is ready to use should you need word stemming for text search, etc.
This is my first time publishing a Gleam package and my second proper project with Gleam, so I'd greatly appreciate any feedback, especially but not limited to, performance. My stemmer is decidedly slower than Louis' porter_stemmer even though I've gone through the low-hanging fruit of using as much pattern-matching and splitter as possible instead of pop_grapheme, etc. Not entirely sure what can be done from here 
Thanks in advance!
-# Happy word stemming! (lol)