CARVIEW |
Select Language
HTTP/2 200
date: Fri, 10 Oct 2025 16:08:12 GMT
content-type: text/html; charset=UTF-8
server: cloudflare
x-frame-options: DENY
x-content-type-options: nosniff
x-xss-protection: 1;mode=block
vary: accept-encoding
cf-cache-status: DYNAMIC
content-encoding: gzip
set-cookie: _csrf-frontend=52b2cc4a66b6033da6232ae11357c8386825eceb27bde6b4293f98e396cdd304a%3A2%3A%7Bi%3A0%3Bs%3A14%3A%22_csrf-frontend%22%3Bi%3A1%3Bs%3A32%3A%22fF2BYth4M5mZxBNmX8kL-5rgZdx7USAu%22%3B%7D; HttpOnly; Path=/
cf-ray: 98c76000eafc95be-BLR
Langton's Ant - Pastebin.com
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- GRIDSIZE = 20
- SPEED = 0.01 'Lower # = Faster speed.
- ''''''''''''''''''''''''''''''''''''''''''''''
- BCOLOR 75,75,75
- TCOLOR 255,0,0
- PRINT "Loading..."
- tick=0
- size2=GRIDSIZE
- size=size2*size2
- x=INT((size2+1)/2)
- y=INT((size2+1)/2) 'Start in middle
- d=2 'Direction. '1:Left,2:Up,3:Right,4:Dwn.
- DIM grid(size)
- COLOR 255,255,255
- FOR i=1 TO size
- grid(i)=0 'Off/White: Background grid.
- NEXT
- FOR i=1 TO size2
- FOR j=1 TO size2
- RRECT (i*(ScreenWidth/size2))-(ScreenWidth/size2),(j*(ScreenHeight/size2))-(ScreenHeight/size2),i*(ScreenWidth/size2),j*(ScreenHeight/size2),5
- NEXT
- NEXT
- SLEEP 0.01
- CLS tty
- WHILE x>0 AND y>0 AND x<size2 AND y<size2
- tick=tick+1
- PRINT tick
- IF grid(x*y)=0 THEN 'If off/White.
- grid(x*y)=1 'Turn on/Black.
- COLOR 0,0,0
- d=d-1 'Turn left
- ELSE
- IF grid(x*y)=1 THEN 'If on/black
- grid(x*y)=0 'Turn off/white
- COLOR 255,255,255
- d=d+1 'Turn right
- ENDIF
- ENDIF
- IF d=0 THEN
- d=4
- ENDIF
- IF d=5 THEN
- d=1
- ENDIF
- IF d=1 THEN
- x=x-1
- ENDIF
- IF d=2 THEN
- y=y-1
- ENDIF
- IF d=3 THEN
- x=x+1
- ENDIF
- IF d=4 THEN
- y=y+1
- ENDIF
- SLEEP speed
- CLS tty
- RRECT (x*(ScreenWidth/size2))-(ScreenWidth/size2),(y*(ScreenHeight/size2))-(ScreenHeight/size2),x*(ScreenWidth/size2),y*(ScreenHeight/size2),5
- WEND
- PRINT tick
Advertisement
Add Comment
Please, Sign In to add comment
-
✅⭐ Make huge profits on trading ⭐⭐ R
JavaScript | 3 sec ago | 0.24 KB
-
✅⭐ Make huge profits on trading ⭐⭐ G
JavaScript | 12 sec ago | 0.24 KB
-
⭐✅ MAKE $2500 IN 15 MIN⭐⭐⭐ K
JavaScript | 14 sec ago | 0.24 KB
-
⭐✅ MAKE $2500 IN 15 MIN⭐⭐⭐ F
JavaScript | 23 sec ago | 0.24 KB
-
⭐✅ Exploit 2500$ in 15 Minutes⭐⭐⭐ 8
JavaScript | 26 sec ago | 0.24 KB
-
⭐✅ Exploit 2500$ in 15 Minutes⭐⭐⭐ K
JavaScript | 34 sec ago | 0.24 KB
-
Free Crypto Method (NEVER SEEN BEFORE)⭐⭐ R
JavaScript | 39 sec ago | 0.24 KB
-
Free Crypto Method (NEVER SEEN BEFORE)⭐⭐ Q
JavaScript | 45 sec ago | 0.24 KB
We use cookies for various purposes including analytics. By continuing to use Pastebin, you agree to our use of cookies as described in the Cookies Policy. OK, I Understand