
Variablen einen Anfangswert zuweisen
So :
Code: Alles auswählen
EnableExplicit
Global x.i
Global y.i
Global time.f
Procedure InitVar()
x = 10
y = 20
time = ElapsedMilliseconds()
EndProcedure
; u.s.w
InitVar()
; blabla
oder so :
Code: Alles auswählen
EnableExplicit
Procedure InitVar()
Global x.i = 10
Global y.i = 20
Global time.f = ElapsedMilliseconds()
EndProcedure
; u.s.w
InitVar()
; blabla