Hacker News new | ask | show | jobs
by mixedbit 4872 days ago
Note that few languages can provide truly Lisp style REPL. For this, the language needs to make no distinction between data and code. You need to be able to generate all language statements dynamically (not string representation of statements that can be then then evaluated, just statements). Erlang does not have this, data and code are different things, so it can't provide Lisp style REPL (The same with Python). Some more info about this: http://stackoverflow.com/questions/12253200/what-is-so-power...