logoalt Hacker News

nextaccounticyesterday at 8:42 PM2 repliesview on HN

implementing addition in woxilang itself?? this gotta be terribly slow. am i missing something?


Replies

evanbyesterday at 11:04 PM

Mathematica has symbolic and infinite-precision addition, so you can't automatically take advantage of obvious compiled code.

show 1 reply
tadfisheryesterday at 10:37 PM

You are missing the term "JIT", which would enable a host of runtime optimizations which include generating calls to some static piece of native code which performs addition.