Name: Anonymous 2014-11-18 17:53
assembly. Is it just trollin' for /prog/, or do you actually perform your general-purpose programming in assembly? Is it really feasible to be a productive programmer by using just ASM?
Why the fuck you'd want to use a linked list for 4 or 8-byte thingsHaskellers use them even for chars. I.e. Haskell Strings are just linked lists of chars. That's right, 5 words of overhead to store just one byte. Actually, there's even more overhead for lazy Strings (which they are by default), because every char is actually a thunk (a function from () to a char)...