Download v.0.5
Download Sources v.0.5
Syntax Reference including several examples
Function Reference
Version History

Added public/private and internal to the class system:

Code:

echo Starting

.myclass:
echo Constructor
ret

private:bla:
echo Private Function
ret

internal:blub:
echo Function
jmp x:bla
ret
.end

echo Middle

mov x new(myclass)
jmp x:blub

; Out-comment the following line to produce a compiler error showing an access violation, since bla is private.
; jmp x:bla

; Out-comment the following line to produce a compiler error showing an access violation, since blub can only be called from the current file.
; Note: abc.seq just contains "jmp x:blub"
; init abc.seq

echo End

; Output:
; Starting
; Middle
; Constructor
; Function
; Private Function
; End






Your friendly mod is at your service.