;declaration of local variable
INT _i
;declaration of procedure
PROCEDURE Procedura
_i := _i + 1
END Procedura
;initialization part - implicitly stated by an action which is neither a declaration
;of variable, procedure nor its part
DELAY _i[s]
CALL Procedura
MESSAGE %IToStr(_i) ON srvskol1v.hip
;end of script = end of initialization part
Pridať komentár