Current status: incomplete draft.
- Computation: V8 very fast; significantly faster than most interpreted languages. The one very big exception is PyPy, which is in the same ballpark
| .PHONY: run | |
| run: test | |
| ./$< | |
| test: test.o runtime.o | |
| gcc -arch i386 $^ -o $@ | |
| %.o: %.asm | |
| nasm -f macho $< -o $@ |