Today I Learned ~D[2025-01-10]
Today's TIL has a twist ending... so stick around.
Elixir has a shortcut for creating anonymous functions. I've always written:
greet = fn name -> "Hello, #{name}!" end
# which can be invoked
greet.("Travis")
# returns
"Hello, Travis!"
However; I came