pixelscript 0.5.10

Multi language scripting runtime
Documentation
1
2
3
4
5
6
7
8
9
; Comments are with ';'

VAR nums = ARR(0,1,2,3,4)

FUN(print_hello, ())

FOR 0..COUNT(nums)
    CALL(0, ARR_AT(nums, 0))
END