Beautiful! I added just one thing to it. Random RGB, lol. Hope you don't mind.
randomize Timer() : ink rgb(100+rnd(155),100+rnd(155),100+rnd(155)),0 : set display mode 800,600,32:dim laberinto(32*4,32*4):for y=0 to 31:for x=0 to 31:if rnd(1)=1:laberinto(x*4,y*4)=1:laberinto(x*4+1,y*4+1)=1:laberinto(x*4+2,y*4+2)=1:laberinto(x*4+3,y*4+3)=1:else:laberinto(x*4+2,y*4)=1:laberinto(x*4+1,y*4+1)=1:laberinto(x*4,y*4+2)=1:laberinto(x*4+3,y*4+3)=1:endif:next x:next y:for y=0 to 32*4:for x=0 to 32*4:if laberinto(x,y)=1:box x*4,y*4,x*4+4,y*4+4:endif:next x:next y:wait key
Oh, and something to attempt to add:
===Make the maze different each time!
Good job though! All in 1 line and 25 commands... Nice work!