Is there a better way of doing this: https://lemire.me/blog/2021/10/14/calling-a-dynamically-compiled-function-from-go/ ?
Compiled programming languages are typically much faster than interpreted programming language. Indeed, the compilation step produces “machine code” that is ideally suited for the processor. However, most programming languages today do not allow you to change the code you compiled. It means that if you find out which function you need after the ...