Code: Select all
dim a (1 to 1024,0 to 768) as ubyte
dim b (1 to 1024,0 to 768) as ubyte
Version: 0.24.0 (WIN32)
Code: Select all
dim a (1 to 1024,0 to 768) as ubyte
dim b (1 to 1024,0 to 768) as ubyte
Code: Select all
' -exx will give a crash :)
declare sub print123
dim as sub ptr n = @ print123
dim as sub main
sub print123
'exit sub 'this will print 2x 123 (dont work in -exx)
print 123
end sub
main = n+1
main()
Code: Select all
Type arreytype
Dim As Ubyte arrey_in_type (1 To 102400)
End Type
Dim Shared As arreytype main (1 To 640000)
sleep
Code: Select all
type arreytype
dim as ubyte arrey_in_type (1 to 64000)
end type
dim shared as arreytype main (1 to 100000)