clear
;preprocess test3
echo $_FILE

undef -all

define oCg	12			;oCgl
define [h	1234			;[hl
define data	-b 11 22 33

print A=$oCg B=$[h 	;1
fill -s0 $data			;2

fill -s0 	-b @inc(5,10)	;3

print @inc(5,$oCg)		;4

print \$oCg=$oCg \$[h=$[h ;5
print \@inc(5,10)=@inc(5,10)	;6

print A=$oCg {\$oCg=$oCg; \$[h=$[h;} 	;7

print \\ \\\ \abc \$xyz \\$xyz \\\$xyz
print @byte(1234) \@byte(1234) \\@byte(1234) \\\@byte(1234)
print @byte($abc) @byte(\$abc) @byte(\\$abc) 
print @byte(  $abc ) @byte( \$abc ) @byte( \\$abc ) 
print @inc( 5 , 11  )
print @inc( 5 , 11 , $abc )
print @inc( 5 , 11 , 2 )

