|
|
|
|
|
by tmtvl
1125 days ago
|
|
I would like Rust a lot more if it got rid of methods. Instead of writing something like... args.into_iter().skip(1).and_so_on...
Which I can't stand to look at, I'd vastly prefer something like... for arg in args[1..*] { ... }
Though my true preference would be S-expressions, but I realise that people lose their marbles when they see something like... (for-each do-something
(slice args #:from 1))
Of course Common Lisp is one of the faster slow-as-molasses languages, but having a language that uses S-expressions which can compile down into a small, fast binary would be the dream. Carp would be interesting if it didn't use Clojure syntax. |
|
With that in mind, what other lisps are running circles against common-lisp? I would love to give those languages a try. From my experience sbcl common-lisp is about equal to Go and Java which I consider pretty fast languages.
Its not as fast as C,C++,Rust but when I think of slow I think of Python, not lisps.