For further actions, you may consider blocking this person and/or reporting abuse
Read next
# Spring Boot Annotation Cheat Sheet
Bellamer -
Rust Source Code Reading: The thousands crate
Gabor Szabo -
WebAssembly + JavaScript: Building a Real-Time Image Processing Tool
Vladislav V. -
Finally got some time to play with the new JSONata and Variables support for Step Functions, and I have to say, it is massive improvement. Check out my latest blog post, where I walk through a simple example of how easy it is to handle pagination now
Ian -
Top comments (3)
Compiling generates processor instructions, such as instructions for, say x86 (intel) family processors. This is the CPU's native "language". The translation is performed ahead of time, so once compiled for x86 the product wouldn't run on, say, an iPhone.
Interpreting is a realtime translation where each instruction is translated at runtime. So the disadvantage, of course slower (same as you talking slower to a foreign language speaker via an... interpreter) and the advantage, more portable as any computer/platform with the interpreter (such as say, the Python interpreter) will be running your program. In some cases interpreted code can even be modified while your program is running.
Absolutely!
Ha! I thought you were asking, this is so funny.