Related changes
Jump to navigation
Jump to search
Enter a page name to see changes on pages linked to or from that page. (To see members of a category, enter Category:Name of category). Changes to pages on your Watchlist are in bold.
List of abbreviations:
- N
- This edit created a new page (also see list of new pages)
- m
- This is a minor edit
- b
- This edit was performed by a bot
- (±123)
- The page size changed by this number of bytes
8 May 2025
09:17 | BooleanFunge/Interpreter diffhist +51 TenBillionPlusOne talk contribs |
7 May 2025
|
N 12:58 | BooleanFunge/Interpreter 2 changes history +3,589 [TenBillionPlusOne (2×)] | |||
|
12:58 (cur | prev) +21 TenBillionPlusOne talk contribs | ||||
N |
|
12:56 (cur | prev) +3,568 TenBillionPlusOne talk contribs (Created page with "Python implementation, without input: <pre> from random import randint import os.path import sys # GLOBAL VARIABLES grid = [] x = 0 # X COORDINATE OF POINTER y = 0 # Y COORDINATE OF POINTER direction = "right" # CURRENT DIRECTION OF MOTION stack = [] # LIFO NUMBER STORAGE directions = ["left", "up", "right", "down"] # ALL POSSIBLE DIRECTIONS def main(): """Read file and repeatedly traverse grid""" grid = readFile() while grid[y][x] != "@" or True in grid:...") |