Lua or Ruby for RPG

Pages: 12
When I'm programming wouldn't it interpret the script in runtime?
No, well yes, kind of. It will interpret the compiled vm instructions that look something this

1
2
3
4
5
6
7
8
; function [0] definition (level 1)
; 0 upvalues, 0 params, 2 stacks
.function 0 0 2 2
.local "a" ; 0
.const "hello" ; 0
[1] loadk 0 0 ; "hello"
[2] return 0 1 
; end of function
Last edited on
closed account (N36fSL3A)
So then my program would need the source...
Topic archived. No new replies allowed.
Pages: 12