Python
Python is one of the most widely used scripting languages in the world.
Unlike Rust or C++ Python is an interpreted language that cannot be run directly in WASM, instead the interpreter is compiled to run in WASM. This means that new scripts can easily be loaded and run with no compile step.
def hi():
print("Hello World!")
Advantages
- Very well known.
- Easy to use.
- Interpreted language allows new scripts to be loaded with no compile step.
Drawbacks
- Slow.