Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- arrays
- declare sub arrays()
- dim tilesize(7, 2) as integer
- a = 0
- for x = 0 to 7
- for y = 0 to 1
- tilesize(x, y) = a
- a++
- next y
- next x
- for x = 0 to 7
- for y = 0 to 1
- print tilesize(x, y),
- next y
- next x
- exit sub
- end sub
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement