a=0.1
b=0.1
c=0.1
d=0.1
e=0.1
f=0.1
g="test"
'-------------------------------------------
count=0
pos=time.sec
loop1:
if pos==time.sec then goto loop1:

'-------------------------------------------
pos=time.sec

loop2:
	count=count+1
if pos==time.sec then goto loop2:

print count
'-------------------------------------------
a=0
pos[a]=time.sec
count[a]=0

loop3:
	count[a]=count[a]+1
if pos[a]==time.sec then goto loop3:

print count[a]
'-------------------------------------------
@test a,b,c,d,e,f,g
	'dumy
_@

pos=time.sec
count=0

loop4:
	count=count+1
	test 1,2,3,4,5,6,7
if pos==time.sec then goto loop4:

print count
'-------------------------------------------
@ pos,count
	count=count+1
	if pos<>time.sec then
		this=count
		return
	endif
	goto @this
_@

@foo=@
foo time.sec
print foo

