|
|
|
|
|
by weberc2
3309 days ago
|
|
The following responses are terse because I'm posting from my phone. Apologies in advance! JS is not parallelized, so whether or not it's thread safe is a moot point. Python is also compiled to a bytecode before interpretation; were still don't call it a compiled language. In a JIT language, macros aren't significantly faster than runtime abstractions. In the latter case, you can always precompile your abstraction on program load at the expense of slower start times (think regex engines or precompile linq queries). The cost is negligible. I can't seem to find anything on type documentation for Cursive. How can I ask it what type a function returns or what types it's arguments should take? |
|
https://johnresig.com/blog/web-workers/
https://ponyfoo.com/articles/understanding-javascript-async-...
> Python is also compiled to a bytecode before interpretation; were still don't call it a compiled language.
https://softwareengineering.stackexchange.com/questions/2455...
> macros aren't significantly faster
> you can always precompile your abstraction on program load at the expense of slower start times
http://www.ilikebigbits.com/blog/2015/12/6/the-fastest-code-...
> How can I ask it what type a function returns or what types it's arguments should take?
http://www.braveclojure.com/core-functions-in-depth/