re: Elixir
@socks out of curiosity, what do you not like about macros?
-F
Serious reply, re: Elixir
@Felthry They make it very difficult to debug when something is wrong. It's not a problem at all when it's something built into the language's standard library and thoroughly well-tested but as soon as you step out of that, you're walking on thin ice
re: Serious reply, re: Elixir
@socks I'm guessing in this context it means something more complicated than how people typically use C preprocessor macros, then?
oh and assembler macros are hard to program without, i don't want to have to remember which memory location we stored this variable in and every location we referenced it in case we have to change it
-F
re: Serious reply, re: Elixir
@socks @Felthry like, using python-style foreach+range instead of a for loop