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