|
|
|
|
|
by TranquilMarmot
3918 days ago
|
|
You can do this in other languages just the same with maybe some different syntax, for example C# "moo".Replace('m', 'z').ToUpper(); Or, fully qualified with "every method in its own namespaced module"; "moo".(string.Replace('m', 'z')).(string.ToUpper()); I'm not sure if elixir is doing anything fancy here that I'm not seeing, though. I still haven't had a chance to try it out. |
|
More or less it rewrites
to