Download v.0.5Download Sources v.0.5Syntax Reference including several examplesFunction ReferenceVersion HistoryAdded 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
