|
|
|
|
|
by dreamcompiler
23 days ago
|
|
I think of C as more of a dark side language because it's basically a portable assembler. Lisp at least prevents you from doing the stupidest things like overrunning array bounds or writing to freed pointers*, which C is perfectly happy to let you do. * Of course there are no user-visible pointers** in Lisp so the concept of free vs. not free doesn't come up because memory allocation and garbage collection are automatic. **Under the hood most everything in Lisp is a pointer, but the user cannot see them or mess with them. |
|