Examine individual changes

Abuse Filter navigation (Home | Recent filter changes | Examine past edits | Abuse log)
Jump to navigation Jump to search

This page allows you to examine the variables generated by the Abuse Filter for an individual change.

Variables generated for this change

VariableValue
Edit count of the user (user_editcount)
0
Name of the user account (user_name)
'Horsey'
Age of the user account (user_age)
4667
Page ID (page_id)
13390
Page namespace (page_namespace)
0
Page title (without namespace) (page_title)
'GORBITSA'
Full page title (page_prefixedtitle)
'GORBITSA'
Action (action)
'edit'
Edit summary/reason (summary)
'/* Programs */ '
Old content model (old_content_model)
'wikitext'
New content model (new_content_model)
'wikitext'
Old page wikitext, before the edit (old_wikitext)
'{{infobox proglang |name=GORBITSA |paradigms=imperative |author=David Barr |year=[[:Category:2020|2020]] |memsys=[[:Category:Cell-based|Cell-based]] |class=[[Finite-state_automaton|Finite-State Automaton]] |refimpl=[[:Category:Implemented|Implemented]] |files=<code>.gbt</code>, <code>.bgbt</code> }} '''GORBITSA''' is a novelty [[esoteric programming language]] created by David Barr (aka javidx9) as a programming challenge for One Lone Coder community. It's jokingly named after one of community moderators Gorbit. It first appeared in OLC Discord server on 17th June 2020. ==Complete description of the language as initially provided== Memory = 256 unsigned 8-bit cells X = unsigned 8-bit register Program counter starts at 0 256 program "instruction" slots G = GRAB X, N // Read X from mem[N] O = OFFER X, N // Write X to mem[N] R = RECEIVE X // Reads from input stream into X B = BRANCH X == 0, N // If X == 0, goto instruction N I = INCREASE X, N // Adds N to X register T = TRANSMIT X // Writes X to output stream S = SET X <- N // Set X explicitly to N A = ADD X, N // Adds mem[N] to X register g = GRAB X, [N] // Read X from mem[mem[N]] o = OFFER X, [N] // Write X to mem[mem[N]] r = RECEIVE [N] // Reads from input stream into mem[N] b = BRANCH X == 0, [N] // If X == 0, goto instruction mem[N] i = INCREASE [N], X // mem[N] = mem[N] + X t = TRANSMIT [N] // Writes to output stream mem[N] s = SET X <- X XOR [N] // Performs logic X XOR mem[N], stores in X a = ADD X, [N] // Adds mem[mem[N]] to X register GORBIT-ROM - Program stream is in external memory GORBIT-RAM - Program stream is in memory, each instruction is 2 bytes, therefore PC+=2 per op Example syntax R O201 R O202 S0 O203 G202 A202 O202 G201 I255 O201 B6 G202 T ==Specification== Following section uses the words: * '''MUST''' - Means it is part of the standard and must be implemented by any given runtime/parser * '''UNDEFINED''' - Means that actual behavior is not defined in the language and support may vary. * '''MAY''' - Same as '''UNDEFINED''' but serves as a way that (may) helps implementors during implementation. * '''MUST NOT''' - Means the standard forbids it and it must be ensured that this may not happen. to describe the Features. {| class="wikitable sortable" |- !ROM !RAM !Category !Classification !Description |- | bgcolor="#99ff99" | Yes | bgcolor="#99ff99" | Yes | Technical | MUST | 256 unsigned byte (8-bit) Cells, serving as Memory |- | bgcolor="#99ff99" | Yes | bgcolor="#ff9999" | No | Technical | MUST | 256 instruction slots. This means up to 256 instruction can be stored and addressed in a single ROM. |- | bgcolor="#99ff99" | Yes | bgcolor="#99ff99" | Yes | Technical | MUST | Single Register unsigned byte (8-bit) called '''X''' |- | bgcolor="#99ff99" | Yes | bgcolor="#99ff99" | Yes | Technical | MUST | unsigned byte (8-bit) '''MIN SIZE''' 0 |- | bgcolor="#99ff99" | Yes | bgcolor="#99ff99" | Yes | Technical | MUST | unsigned byte (8-bit) '''MAX SIZE''' 255 |- | bgcolor="#99ff99" | Yes | bgcolor="#99ff99" | Yes | Technical | MUST | unsigned byte (8-bit) roll over to '''MIN SIZE''' (0) if ''255 + 1'' is performed |- | bgcolor="#99ff99" | Yes | bgcolor="#99ff99" | Yes | Technical | MUST | unsigned byte (8-bit) roll over to '''MAX SIZE''' (255) if ''0 - 1'' is performed |- | bgcolor="#ff9999" | No | bgcolor="#99ff99" | Yes | Technical | MUST | Instruction size MUST be 2 bytes. |- | bgcolor="#99ff99" | Yes | bgcolor="#99ff99" | Yes | Technical | MUST | Initial values of Memory slots MUST be 0 initially. |- | bgcolor="#99ff99" | Yes | bgcolor="#ff9999" | No | Technical | UNDEFINED | Initial values of Instruction slots are UNDEFINED. Behavior when acessing them is up to implementor. |- | bgcolor="#99ff99" | Yes | bgcolor="#ff9999" | No | Technical | MUST | PC MUST increase by 1 after non-branching instructions executed. |- | bgcolor="#ff9999" | No | bgcolor="#99ff99" | Yes | Technical | MUST | PC MUST increase by 2 after non-branching instructions executed. |- | bgcolor="#99ff99" | Yes | bgcolor="#99ff99" | Yes | Technical | MUST NOT | Branching instructions MUST NOT modify the Program Counter (PC) after they executed. |- | bgcolor="#99ff99" | Yes | bgcolor="#ff9999" | No | Technical | MUST | Branching instructions MUST address absolute instruction slot (eg. <code>B5</code> addresses instruction slot ''5''). |- | bgcolor="#ff9999" | No | bgcolor="#99ff99" | Yes | Technical | MUST | Branching instructions MUST address absolute Memory slot (eg. <code>B5</code> addresses memory slot ''5''). |- | bgcolor="#99ff99" | Yes | bgcolor="#99ff99" | Yes | Format | MUST | A single instruction is made out of single-letter command code and up to 1 number parameter |- | bgcolor="#99ff99" | Yes | bgcolor="#99ff99" | Yes | Format | MUST | Instructions must be separated by spaces, an instruction consists of a valid letter and a number joined together: <code>S97 T R T</code> |- | bgcolor="#99ff99" | Yes | bgcolor="#99ff99" | Yes | Input | UNDEFINED | GORBITSA MAY use ascii characters as input or MAY use numbers as input. |- | bgcolor="#99ff99" | Yes | bgcolor="#99ff99" | Yes | Output | UNDEFINED | GORBITSA MAY use ascii characters as output or MAY use numbers as output. They MAY print a ''newline'' after output. |- | bgcolor="#99ff99" | Yes | bgcolor="#99ff99" | Yes | Technical | UNDEFINED | When PC points at invalid instruction, it is UNDEFINED wether execution stops or continues. |- | bgcolor="#99ff99" | Yes | bgcolor="#99ff99" | Yes | Technical | MUST | When PC points at (hypothetical) 256s instruction, execution halts. |} <!-- GORBITSA operates on array of 256 8-bit cells (Memory) and single 8-bit register (X).<br> Instruction are provided in linear format, up to 256 instructions (slots 0-255). Current instruction is tracked by instruction counter (IC). At the beginning IC is 0. In each step instruction pointed by IC is read and executed. If instruction doesn't modify IC, the IC is incremented.<br> If IC points after last instruction, execution halts.<br> Whether input and/or output are in a form of a number or ascii character is implementation-defined. All instructions are made out of single-letter command code and up to 1 number parameter. --> ==Language overview== ===Base Instructions (GORBITSA)=== {| class="wikitable" !Command code !Parameter !Description |- | style="text-align:center"| <code>G</code> |Yes: N |X = Memory[N] |- | style="text-align:center"| <code>O</code> |Yes: N |Memory[N] = X |- | style="text-align:center"| <code>R</code> |No |Read input into X |- | style="text-align:center"| <code>B</code> |Yes: N |if X == 0, IC = N |- | style="text-align:center"| <code>I</code> |Yes: N |X += N |- | style="text-align:center"| <code>T</code> |No |Write X into output |- | style="text-align:center"| <code>S</code> |Yes: N |X = N |- | style="text-align:center"| <code>A</code> |Yes: N |X += Memory[N] |} ===Expanded Instructions (gorbitsa)=== After limitations of base language were recognized, the instruction set was expanded to lower case letters.<br> New set allows direct I/O with memory, runtime computed goto destination and XOR. {| class="wikitable" !Command code !Parameter !Description |- | style="text-align:center"| <code>g</code> |Yes: N |X = Memory[Memory[N]] |- | style="text-align:center"| <code>o</code> |Yes: N |Memory[Memory[N]] = X |- | style="text-align:center"| <code>r</code> |Yes: N |Read input into Memory[N] |- | style="text-align:center"| <code>b</code> |Yes: N |if X == 0, IC = Memory[N] |- | style="text-align:center"| <code>i</code> |Yes: N |Memory[N] += X |- | style="text-align:center"| <code>t</code> |Yes: N |Write Memory[N] into output |- | style="text-align:center"| <code>s</code> |Yes: N |X = X xor Memory[N] |- | style="text-align:center"| <code>a</code> |Yes: N |X += Memory[Memory[N]] |} ==Computational class== Due to limited amount of cells and limited possible values in cells and register, it is a [[Linear bounded automaton]]. ==Programs== Here are a few example programs that can be written in the GORBITSA language ===[[Hello World]]=== S72 T S101 T S108 T T S111 T S32 T S87 T S111 T S114 T S108 T S100 T ===[[Cat program]]=== R T ===[[Cat program]] until EOF=== Assumes 0-based command indexing. R T B5 S0 B0 S0 ===[[Truth-machine]]=== R O0 I255 O1 G0 T G1 B4 R B6 S1 T S0 B2 T R T B255 S1 T S0 B3 ===Cheaty Quine=== Runs in '''GORBITSA-RAM''' mode. If characters are stored in memory as their ascii value (which they should), this will only print numbers (or characters if the interpreter prints ascii values) S0 O255 g255 B22 g255 T G255 I1 O255 S0 B4 G255 I1 O240 g240 B36 S0 B10 B200 ===Subtraction=== R O0 R O1 G0 I255 O0 G1 I255 O1 B13 S0 B4 G0 T S255 O255 r0 R s255 I1 A0 T ===Multiplication=== R O0 O1 R I255 O2 G0 A1 O0 G2 I255 O2 B15 S0 B6 G0 T r201 R B17 I255 B16 O0 G201 O202 G202 i201 G0 I255 O0 B16 S0 B8 G201 T ===Modulus=== Runs on '''GORBITSA-ROM''' with '''int output''' and '''int input''' R O0 O1 R O2 O3 S255 O255 S0 B11 B19 G3 s255 I1 A1 O1 O5 S0 B10 G2 O10 G5 A10 B35 G5 B37 G10 B35 I255 O10 G5 I255 O5 S0 B21 S0 B8 G1 T ===Byte Swap=== It swaps the values of Memory[0] and Memory[1]: G0 s1 O0 G1 s0 O1 G0 s1 O0 ===For loop=== '''The first parameter'''(In this program, 5) is the number of times the loop will be executed S5 O0 S35 T G0 I255 O0 B10 S0 B2 S0 T ===Number Comparison=== Prints 'T' if A <= B else it prints 'F', runs in ROM and RAM mode, though it's one use only in the latter. r0 r1 G0 B14 G1 B18 G0 I255 O0 G1 I255 O1 S0 B2 S84 T S0 B19 S70 T ===Guessing Game (by [[User:Geek Joystick]])=== Runs on '''GORBITSA-ROM''' with '''char output''' and '''int input''' (the python interpreter by [[User:Geek Joystick]] & TwistedLlama works for this program) S0 S252 O0 S71 T S117 T S101 T S115 T T S32 T S40 T S48 T S45 T S57 T S41 T S63 T S32 T R O1 I48 T S12 T G0 A1 B50 S87 T S114 T S111 T S110 T S103 T S12 T S0 B0 S82 T S105 T S103 T S104 T S116 T S33 T ===Self Interpreter (by [[User:ZippyMagician]])=== Runs on '''GORBITSA-ROM''' with '''int output''' and '''int/ascii input'''. Interpreted code is in '''GORBITSA-RAM''', 99 commands maximum due to limitations of the memory. Each command and argument are inputted one after the other, with commands that take no arguments still requiring any number. Code will immediately be execute once the user enters "0". Full syntax supported. S255 O253 R B10 o200 S1 O220 i200 S0 B2 S82 O255 S16 O252 S0 B148 G254 B155 S84 O255 S24 O252 S0 B148 G254 B158 S71 O255 S32 O252 S0 B148 G254 B161 S79 O255 S40 O252 S0 B148 G254 B167 S66 O255 S48 O252 S0 B148 G254 B173 S73 O255 S56 O252 S0 B148 G254 B181 S83 O255 S64 O252 S0 B148 G254 B185 S65 O255 S72 O252 S0 B148 G254 B189 S103 O255 S80 O252 S0 B148 G254 B195 S111 O255 S88 O252 S0 B148 G254 B203 S114 O255 S96 O252 S0 B148 G254 B211 S98 O255 S104 O252 S0 B148 G254 B237 S105 O255 S112 O252 S0 B148 G254 B217 S116 O255 S120 O252 S0 B148 G254 B222 S115 O255 S128 O252 S0 B148 G254 B247 S97 O255 S136 O252 S0 B148 G254 B228 G201 s253 I1 A200 B255 S2 i201 i220 S0 B10 g201 s253 I1 A255 O254 S0 b252 r230 S0 B138 t230 S0 B138 g220 O240 g240 O230 S0 B138 g220 O240 G230 o240 S0 B138 G230 B179 S0 B138 g220 O201 S0 B138 g220 i230 S0 B138 g220 O230 S0 B138 g220 O240 g240 i230 S0 B138 g220 O240 g240 O240 g240 O230 S0 B138 g220 O240 g240 O240 G230 o240 S0 B138 g220 O240 R o240 S0 B138 g220 A230 o220 S0 B138 g220 O240 g240 T S0 B138 g220 O240 g240 O240 G230 a240 O230 S0 B138 G230 B243 S0 B138 g220 O240 g240 O201 S0 B138 g220 O240 g240 O240 G230 s240 O230 S0 B138 ===Pseudo Random Number Generator (by dandistine)=== Runs on '''GORBITSA-ROM''' with '''int or ascii input''' and '''int output'''. Takes three seeds as input, outputs a PRNG sequence until terminated S255 O0 S0 o0 S255 i0 G0 B10 S0 B3 r10 r11 r12 S1 O13 S1 i13 G13 A12 s10 O10 A11 O11 I1 s11 I255 B33 G11 I255 O20 O21 S0 B36 G11 O20 O21 G21 I255 O21 A21 s20 B44 S0 B36 G21 O11 s10 A12 O12 T S0 B15 ===Tic-tac-toe (by Horsey)=== Runs on '''GORBITSA-ROM''' with '''ascii input''' and '''ascii output'''. S255 O95 S2 O240 O241 O242 O243 O244 O245 O246 O247 O248 S9 O57 S88 O50 S240 O99 S10 T S3 O4 S124 T S3 O3 g99 B38 I255 B34 S32 O2 S0 B41 S88 O2 S0 B41 S79 O2 S0 G2 T S124 T G99 I1 O99 G3 I255 O3 B54 S0 B26 S10 T G4 I255 O4 B62 S0 B22 S240 O99 G57 B254 G50 T S58 T S32 T R I192 O7 G50 I168 O32 g7 I254 O56 B84 S0 B218 G32 B88 S0 B89 S1 o7 S3 O8 g99 I254 B121 g99 O255 G99 I1 O99 g99 O254 G255 s95 I1 A254 B109 S0 B121 g99 O255 G99 I1 O99 g99 O254 G255 s95 I1 A254 B236 G8 I255 O8 G8 A8 A8 O255 S249 O254 G255 s95 I1 A254 O99 G8 B139 S0 B92 S240 O99 S3 O9 g99 I254 B172 g99 O255 G99 I3 O99 g99 O254 G255 s95 I1 A254 B160 S0 B172 g99 O255 G99 I3 O99 g99 O254 G255 s95 I1 A254 B236 G9 I255 O9 I239 O99 G9 B181 S0 B143 G244 I254 B218 G244 O255 G240 O254 G255 s95 I1 A254 B195 S0 B202 G248 O254 G255 s95 I1 A254 B236 G246 O254 G255 s95 I1 A254 B211 S0 B218 G242 O254 G255 s95 I1 A254 B236 G32 B224 S88 O50 S0 B226 S79 O50 G56 B230 S0 B236 G57 I255 O57 B249 S0 B16 G50 T S32 T S119 T S111 T S110 T S0 O57 B16 S61 T S0 O57 B16 ===A '''10x10 Box''' (By Megarev)=== The first ''S10'' and the third ''S10'' define the size of the box S10 O0 G0 I255 O0 B19 S10 T S10 O1 G1 I255 O1 S35 T G1 B2 S0 B10 S10 T ==='''Simple Stairs''' (By Megarev)=== The fifth ''S6'' defines the size of stairs S10 O10 S0 O1 S6 O0 G0 I255 O0 B24 t10 G1 I1 O1 O2 G2 I255 O2 S35 T G2 B6 S0 B15 t10 ==='''Saurons eye''' (By TrolledWoods)=== Prints saurons eye if ''ascii output''. Takes no inputs S206 O132 S10 T S156 O97 S1 i97 S0 O7 G97 I237 O131 G97 i7 S1 i131 G131 B42 S0 B26 S0 O105 G132 I45 O131 G132 i105 S1 i131 G131 B68 S0 B52 G105 i7 S200 O105 G7 B94 G105 B102 S255 i7 i105 S0 B76 S46 T S0 B110 S35 T S0 B110 G97 B118 S0 B12 S1 i132 G132 B255 S0 B4 ==Implementations== {| class="wikitable" |- ! Name !! Meaning |- | PC || Parse Input Supports Characters (eg. <code>Sa</code> gets read as <code>S97</code>; <code>S1</code> gets read as <code>S49</code>) |- | PM || Parse Input Supports Mixed (eg. <code>Sa</code> gets read as <code>S97</code>; <code>(char)1</code> gets read as <code>S1</code>) |- | PN || Parse Input Supports Numbers (eg. <code>Sa</code> gets rejected; <code>S1</code> gets read as <code>S1</code>) |- | PNN || Parse Input Supports Negative Numbers (eg. <code>Sa</code> gets rejected; <code>S-1</code> gets read as <code>S255</code>) |- | IC || Input Supports Characters (eg. <code>(char)a</code> gets read as <code>(uint8)97</code>; <code>(char)1</code> gets read as <code>(uint8)49</code>) |- | IM || Input Supports Mixed (eg. <code>(char)a</code> gets read as <code>(uint8)97</code>; <code>(char)1</code> gets read as <code>(uint8)1</code>) |- | IN || Input Supports Numbers (eg. <code>(char)a</code> gets rejected; <code>(char)1</code> gets read as <code>(uint8)1</code>) |- | INN || Input Supports Negative Numbers (eg. <code>(char)a</code> gets rejected; <code>(char)-1</code> gets read as <code>(uint8)255</code>) |- | OC || Output Supports Characters (eg. <code>(uint8)97</code> gets outputted as <code>(char)a</code>; <code>(uint8)49</code> gets outputted as <code>(char)1</code>) |- | ON || Output Supports Numbers (eg. <code>(uint8)97</code> gets outputted as <code>(string)97</code>) |} {| class="wikitable sortable" |- ! Language !! Base (ROM/RAM/BOTH) !! PC !! PM !! PN !! PNN !! IC !! IM !! IN !! INN !! OC !! ON !! Authors !! Link |- | Python | bgcolor="#9999ff" | ROM | bgcolor="#ff9999" | N || bgcolor="#ff9999" | N || bgcolor="#99ff99" | Y || bgcolor="#99ff99" | Y | bgcolor="#99ff99" | Y || bgcolor="#ff9999" | N || bgcolor="#99ff99" | Y || bgcolor="#99ff99" | Y | bgcolor="#99ff99" | Y || bgcolor="#99ff99" | Y | *[[User:Geek_Joystick]] *TwistedLlama || [https://py3.codeskulptor.org/#user305_FoyrT6WzZgLLiYZ.py codeskulptor] |- | Node.JS | bgcolor="#ff99ff" | BOTH | bgcolor="#ff9999" | N || bgcolor="#99ff99" | Y || bgcolor="#99ff99" | Y || bgcolor="#ff9999" | N | bgcolor="#ff9999" | N || bgcolor="#99ff99" | Y || bgcolor="#99ff99" | Y || bgcolor="#ff9999" | N | bgcolor="#99ff99" | Y || bgcolor="#99ff99" | Y | *[[User:ZippyMagician]] || [https://repl.it/@ZippyMagician/GORBITSA repl_it] |- | JavaScript | bgcolor="#9999ff" | ROM | bgcolor="#ff9999" | N || bgcolor="#ff9999" | N || bgcolor="#99ff99" | Y || bgcolor="#ff9999" | N | bgcolor="#ff9999" | N || bgcolor="#ff9999" | N || bgcolor="#99ff99" | Y || bgcolor="#ff9999" | N | bgcolor="#ff9999" | N || bgcolor="#99ff99" | Y | *Sir Felix Delazar || [https://sirfelixdelazar.github.io/GORBITSA/ Site] |- | C | bgcolor="#ff99ff" | BOTH | bgcolor="#99ff99" | Y || bgcolor="#99ff99" | Y || bgcolor="#99ff99" | Y || bgcolor="#99ff99" | Y | bgcolor="#99ff99" | Y || bgcolor="#99ff99" | Y || bgcolor="#99ff99" | Y || bgcolor="#99ff99" | Y | bgcolor="#99ff99" | Y || bgcolor="#99ff99" | Y | *[[User:X39]] || [https://repl.it/@killerx29/EsoLang-GORBITSA#main.c repl_it] |- | Brainfuck | bgcolor="#9999ff" | ROM | bgcolor="#99ff99" | Y || bgcolor="#ff9999" | N || bgcolor="#ff9999" | N || bgcolor="#ff9999" | N | bgcolor="#99ff99" | Y || bgcolor="#ff9999" | N || bgcolor="#ff9999" | N || bgcolor="#ff9999" | N | bgcolor="#99ff99" | Y || bgcolor="#ff9999" | N | *Gorbit99 || [https://esolangs.org/wiki/GORBITSA/bf-interpreter /bf-interpreter] |- | Python3 | bgcolor="#9999ff" | ROM | bgcolor="#ff9999" | N || bgcolor="#ff9999" | N || bgcolor="#99ff99" | Y || bgcolor="#ff9999" | N | bgcolor="#99ff99" | Y || bgcolor="#ff9999" | N || bgcolor="#99ff99" | Y || bgcolor="#ff9999" | N | bgcolor="#99ff99" | Y || bgcolor="#99ff99" | Y | *[[User:Chibill|Chibill]] ([[User talk:Chibill|talk]]) || [https://gist.github.com/wgaylord/46442e813919a4b1f1a3136e1fbb54df GORBITSA to C Compiler] |} [[Category:Languages]] [[Category:2020]] [[Category:Implemented]] [[Category:Low-level]] [[Category:Unknown computational class]]'
New page wikitext, after the edit (new_wikitext)
'{{infobox proglang |name=GORBITSA |paradigms=imperative |author=David Barr |year=[[:Category:2020|2020]] |memsys=[[:Category:Cell-based|Cell-based]] |class=[[Finite-state_automaton|Finite-State Automaton]] |refimpl=[[:Category:Implemented|Implemented]] |files=<code>.gbt</code>, <code>.bgbt</code> }} '''GORBITSA''' is a novelty [[esoteric programming language]] created by David Barr (aka javidx9) as a programming challenge for One Lone Coder community. It's jokingly named after one of community moderators Gorbit. It first appeared in OLC Discord server on 17th June 2020. ==Complete description of the language as initially provided== Memory = 256 unsigned 8-bit cells X = unsigned 8-bit register Program counter starts at 0 256 program "instruction" slots G = GRAB X, N // Read X from mem[N] O = OFFER X, N // Write X to mem[N] R = RECEIVE X // Reads from input stream into X B = BRANCH X == 0, N // If X == 0, goto instruction N I = INCREASE X, N // Adds N to X register T = TRANSMIT X // Writes X to output stream S = SET X <- N // Set X explicitly to N A = ADD X, N // Adds mem[N] to X register g = GRAB X, [N] // Read X from mem[mem[N]] o = OFFER X, [N] // Write X to mem[mem[N]] r = RECEIVE [N] // Reads from input stream into mem[N] b = BRANCH X == 0, [N] // If X == 0, goto instruction mem[N] i = INCREASE [N], X // mem[N] = mem[N] + X t = TRANSMIT [N] // Writes to output stream mem[N] s = SET X <- X XOR [N] // Performs logic X XOR mem[N], stores in X a = ADD X, [N] // Adds mem[mem[N]] to X register GORBIT-ROM - Program stream is in external memory GORBIT-RAM - Program stream is in memory, each instruction is 2 bytes, therefore PC+=2 per op Example syntax R O201 R O202 S0 O203 G202 A202 O202 G201 I255 O201 B6 G202 T ==Specification== Following section uses the words: * '''MUST''' - Means it is part of the standard and must be implemented by any given runtime/parser * '''UNDEFINED''' - Means that actual behavior is not defined in the language and support may vary. * '''MAY''' - Same as '''UNDEFINED''' but serves as a way that (may) helps implementors during implementation. * '''MUST NOT''' - Means the standard forbids it and it must be ensured that this may not happen. to describe the Features. {| class="wikitable sortable" |- !ROM !RAM !Category !Classification !Description |- | bgcolor="#99ff99" | Yes | bgcolor="#99ff99" | Yes | Technical | MUST | 256 unsigned byte (8-bit) Cells, serving as Memory |- | bgcolor="#99ff99" | Yes | bgcolor="#ff9999" | No | Technical | MUST | 256 instruction slots. This means up to 256 instruction can be stored and addressed in a single ROM. |- | bgcolor="#99ff99" | Yes | bgcolor="#99ff99" | Yes | Technical | MUST | Single Register unsigned byte (8-bit) called '''X''' |- | bgcolor="#99ff99" | Yes | bgcolor="#99ff99" | Yes | Technical | MUST | unsigned byte (8-bit) '''MIN SIZE''' 0 |- | bgcolor="#99ff99" | Yes | bgcolor="#99ff99" | Yes | Technical | MUST | unsigned byte (8-bit) '''MAX SIZE''' 255 |- | bgcolor="#99ff99" | Yes | bgcolor="#99ff99" | Yes | Technical | MUST | unsigned byte (8-bit) roll over to '''MIN SIZE''' (0) if ''255 + 1'' is performed |- | bgcolor="#99ff99" | Yes | bgcolor="#99ff99" | Yes | Technical | MUST | unsigned byte (8-bit) roll over to '''MAX SIZE''' (255) if ''0 - 1'' is performed |- | bgcolor="#ff9999" | No | bgcolor="#99ff99" | Yes | Technical | MUST | Instruction size MUST be 2 bytes. |- | bgcolor="#99ff99" | Yes | bgcolor="#99ff99" | Yes | Technical | MUST | Initial values of Memory slots MUST be 0 initially. |- | bgcolor="#99ff99" | Yes | bgcolor="#ff9999" | No | Technical | UNDEFINED | Initial values of Instruction slots are UNDEFINED. Behavior when acessing them is up to implementor. |- | bgcolor="#99ff99" | Yes | bgcolor="#ff9999" | No | Technical | MUST | PC MUST increase by 1 after non-branching instructions executed. |- | bgcolor="#ff9999" | No | bgcolor="#99ff99" | Yes | Technical | MUST | PC MUST increase by 2 after non-branching instructions executed. |- | bgcolor="#99ff99" | Yes | bgcolor="#99ff99" | Yes | Technical | MUST NOT | Branching instructions MUST NOT modify the Program Counter (PC) after they executed. |- | bgcolor="#99ff99" | Yes | bgcolor="#ff9999" | No | Technical | MUST | Branching instructions MUST address absolute instruction slot (eg. <code>B5</code> addresses instruction slot ''5''). |- | bgcolor="#ff9999" | No | bgcolor="#99ff99" | Yes | Technical | MUST | Branching instructions MUST address absolute Memory slot (eg. <code>B5</code> addresses memory slot ''5''). |- | bgcolor="#99ff99" | Yes | bgcolor="#99ff99" | Yes | Format | MUST | A single instruction is made out of single-letter command code and up to 1 number parameter |- | bgcolor="#99ff99" | Yes | bgcolor="#99ff99" | Yes | Format | MUST | Instructions must be separated by spaces, an instruction consists of a valid letter and a number joined together: <code>S97 T R T</code> |- | bgcolor="#99ff99" | Yes | bgcolor="#99ff99" | Yes | Input | UNDEFINED | GORBITSA MAY use ascii characters as input or MAY use numbers as input. |- | bgcolor="#99ff99" | Yes | bgcolor="#99ff99" | Yes | Output | UNDEFINED | GORBITSA MAY use ascii characters as output or MAY use numbers as output. They MAY print a ''newline'' after output. |- | bgcolor="#99ff99" | Yes | bgcolor="#99ff99" | Yes | Technical | UNDEFINED | When PC points at invalid instruction, it is UNDEFINED wether execution stops or continues. |- | bgcolor="#99ff99" | Yes | bgcolor="#99ff99" | Yes | Technical | MUST | When PC points at (hypothetical) 256s instruction, execution halts. |} <!-- GORBITSA operates on array of 256 8-bit cells (Memory) and single 8-bit register (X).<br> Instruction are provided in linear format, up to 256 instructions (slots 0-255). Current instruction is tracked by instruction counter (IC). At the beginning IC is 0. In each step instruction pointed by IC is read and executed. If instruction doesn't modify IC, the IC is incremented.<br> If IC points after last instruction, execution halts.<br> Whether input and/or output are in a form of a number or ascii character is implementation-defined. All instructions are made out of single-letter command code and up to 1 number parameter. --> ==Language overview== ===Base Instructions (GORBITSA)=== {| class="wikitable" !Command code !Parameter !Description |- | style="text-align:center"| <code>G</code> |Yes: N |X = Memory[N] |- | style="text-align:center"| <code>O</code> |Yes: N |Memory[N] = X |- | style="text-align:center"| <code>R</code> |No |Read input into X |- | style="text-align:center"| <code>B</code> |Yes: N |if X == 0, IC = N |- | style="text-align:center"| <code>I</code> |Yes: N |X += N |- | style="text-align:center"| <code>T</code> |No |Write X into output |- | style="text-align:center"| <code>S</code> |Yes: N |X = N |- | style="text-align:center"| <code>A</code> |Yes: N |X += Memory[N] |} ===Expanded Instructions (gorbitsa)=== After limitations of base language were recognized, the instruction set was expanded to lower case letters.<br> New set allows direct I/O with memory, runtime computed goto destination and XOR. {| class="wikitable" !Command code !Parameter !Description |- | style="text-align:center"| <code>g</code> |Yes: N |X = Memory[Memory[N]] |- | style="text-align:center"| <code>o</code> |Yes: N |Memory[Memory[N]] = X |- | style="text-align:center"| <code>r</code> |Yes: N |Read input into Memory[N] |- | style="text-align:center"| <code>b</code> |Yes: N |if X == 0, IC = Memory[N] |- | style="text-align:center"| <code>i</code> |Yes: N |Memory[N] += X |- | style="text-align:center"| <code>t</code> |Yes: N |Write Memory[N] into output |- | style="text-align:center"| <code>s</code> |Yes: N |X = X xor Memory[N] |- | style="text-align:center"| <code>a</code> |Yes: N |X += Memory[Memory[N]] |} ==Computational class== Due to limited amount of cells and limited possible values in cells and register, it is a [[Linear bounded automaton]]. ==Programs== Here are a few example programs that can be written in the GORBITSA language ===[[Hello World]]=== S72 T S101 T S108 T T S111 T S32 T S87 T S111 T S114 T S108 T S100 T ===[[Cat program]]=== R T ===[[Cat program]] until EOF=== Assumes 0-based command indexing. R T B5 S0 B0 S0 ===[[Truth-machine]]=== R O0 I255 O1 G0 T G1 B4 R B6 S1 T S0 B2 T R T B255 S1 T S0 B3 ===Cheaty Quine=== Runs in '''GORBITSA-RAM''' mode. If characters are stored in memory as their ascii value (which they should), this will only print numbers (or characters if the interpreter prints ascii values) S0 O255 g255 B22 g255 T G255 I1 O255 S0 B4 G255 I1 O240 g240 B36 S0 B10 B200 ===Subtraction=== R O0 R O1 G0 I255 O0 G1 I255 O1 B13 S0 B4 G0 T S255 O255 r0 R s255 I1 A0 T ===Multiplication=== R O0 O1 R I255 O2 G0 A1 O0 G2 I255 O2 B15 S0 B6 G0 T r201 R B17 I255 B16 O0 G201 O202 G202 i201 G0 I255 O0 B16 S0 B8 G201 T ===Modulus=== Runs on '''GORBITSA-ROM''' with '''int output''' and '''int input''' R O0 O1 R O2 O3 S255 O255 S0 B11 B19 G3 s255 I1 A1 O1 O5 S0 B10 G2 O10 G5 A10 B35 G5 B37 G10 B35 I255 O10 G5 I255 O5 S0 B21 S0 B8 G1 T ===Byte Swap=== It swaps the values of Memory[0] and Memory[1]: G0 s1 O0 G1 s0 O1 G0 s1 O0 ===For loop=== '''The first parameter'''(In this program, 5) is the number of times the loop will be executed S5 O0 S35 T G0 I255 O0 B10 S0 B2 S0 T ===Number Comparison=== Prints 'T' if A <= B else it prints 'F', runs in ROM and RAM mode, though it's one use only in the latter. r0 r1 G0 B14 G1 B18 G0 I255 O0 G1 I255 O1 S0 B2 S84 T S0 B19 S70 T ===Guessing Game (by [[User:Geek Joystick]])=== Runs on '''GORBITSA-ROM''' with '''char output''' and '''int input''' (the python interpreter by [[User:Geek Joystick]] & TwistedLlama works for this program) S0 S252 O0 S71 T S117 T S101 T S115 T T S32 T S40 T S48 T S45 T S57 T S41 T S63 T S32 T R O1 I48 T S12 T G0 A1 B50 S87 T S114 T S111 T S110 T S103 T S12 T S0 B0 S82 T S105 T S103 T S104 T S116 T S33 T ===Self Interpreter (by [[User:ZippyMagician]])=== Runs on '''GORBITSA-ROM''' with '''int output''' and '''int/ascii input'''. Interpreted code is in '''GORBITSA-RAM''', 99 commands maximum due to limitations of the memory. Each command and argument are inputted one after the other, with commands that take no arguments still requiring any number. Code will immediately be execute once the user enters "0". Full syntax supported. S255 O253 R B10 o200 S1 O220 i200 S0 B2 S82 O255 S16 O252 S0 B148 G254 B155 S84 O255 S24 O252 S0 B148 G254 B158 S71 O255 S32 O252 S0 B148 G254 B161 S79 O255 S40 O252 S0 B148 G254 B167 S66 O255 S48 O252 S0 B148 G254 B173 S73 O255 S56 O252 S0 B148 G254 B181 S83 O255 S64 O252 S0 B148 G254 B185 S65 O255 S72 O252 S0 B148 G254 B189 S103 O255 S80 O252 S0 B148 G254 B195 S111 O255 S88 O252 S0 B148 G254 B203 S114 O255 S96 O252 S0 B148 G254 B211 S98 O255 S104 O252 S0 B148 G254 B237 S105 O255 S112 O252 S0 B148 G254 B217 S116 O255 S120 O252 S0 B148 G254 B222 S115 O255 S128 O252 S0 B148 G254 B247 S97 O255 S136 O252 S0 B148 G254 B228 G201 s253 I1 A200 B255 S2 i201 i220 S0 B10 g201 s253 I1 A255 O254 S0 b252 r230 S0 B138 t230 S0 B138 g220 O240 g240 O230 S0 B138 g220 O240 G230 o240 S0 B138 G230 B179 S0 B138 g220 O201 S0 B138 g220 i230 S0 B138 g220 O230 S0 B138 g220 O240 g240 i230 S0 B138 g220 O240 g240 O240 g240 O230 S0 B138 g220 O240 g240 O240 G230 o240 S0 B138 g220 O240 R o240 S0 B138 g220 A230 o220 S0 B138 g220 O240 g240 T S0 B138 g220 O240 g240 O240 G230 a240 O230 S0 B138 G230 B243 S0 B138 g220 O240 g240 O201 S0 B138 g220 O240 g240 O240 G230 s240 O230 S0 B138 ===Pseudo Random Number Generator (by dandistine)=== Runs on '''GORBITSA-ROM''' with '''int or ascii input''' and '''int output'''. Takes three seeds as input, outputs a PRNG sequence until terminated S255 O0 S0 o0 S255 i0 G0 B10 S0 B3 r10 r11 r12 S1 O13 S1 i13 G13 A12 s10 O10 A11 O11 I1 s11 I255 B33 G11 I255 O20 O21 S0 B36 G11 O20 O21 G21 I255 O21 A21 s20 B44 S0 B36 G21 O11 s10 A12 O12 T S0 B15 ===Tic-tac-toe (by Horsey)=== Runs on '''GORBITSA-ROM''' with '''ascii input''' and '''ascii output'''. S255 O95 S2 O240 O241 O242 O243 O244 O245 O246 O247 O248 S9 O57 S88 O50 S240 O99 S10 T S3 O4 S124 T S3 O3 g99 B38 I255 B34 S32 O2 S0 B41 S88 O2 S0 B41 S79 O2 S0 G2 T S124 T G99 I1 O99 G3 I255 O3 B54 S0 B26 S10 T G4 I255 O4 B62 S0 B22 S240 O99 G57 B254 G50 T S58 T S32 T R I192 O7 G50 I168 O32 g7 I254 O56 B84 S0 B218 G32 B88 S0 B89 S1 o7 S3 O8 g99 I254 B121 g99 O255 G99 I1 O99 g99 O254 G255 s95 I1 A254 B109 S0 B121 g99 O255 G99 I1 O99 g99 O254 G255 s95 I1 A254 B236 G8 I255 O8 G8 A8 A8 O255 S249 O254 G255 s95 I1 A254 O99 G8 B139 S0 B92 S240 O99 S3 O9 g99 I254 B172 g99 O255 G99 I3 O99 g99 O254 G255 s95 I1 A254 B160 S0 B172 g99 O255 G99 I3 O99 g99 O254 G255 s95 I1 A254 B236 G9 I255 O9 I239 O99 G9 B181 S0 B143 G244 I254 B218 G244 O255 G240 O254 G255 s95 I1 A254 B195 S0 B202 G248 O254 G255 s95 I1 A254 B236 G246 O254 G255 s95 I1 A254 B211 S0 B218 G242 O254 G255 s95 I1 A254 B236 G32 B224 S88 O50 S0 B226 S79 O50 G56 B230 S0 B236 G57 I255 O57 B249 S0 B16 G50 T S32 T S119 T S111 T S110 T S0 O57 B16 S61 T S0 O57 B16 ===A '''10x10 Box''' (By Megarev)=== The first ''S10'' and the third ''S10'' define the size of the box S10 O0 G0 I255 O0 B19 S10 T S10 O1 G1 I255 O1 S35 T G1 B2 S0 B10 S10 T ==='''Simple Stairs''' (By Megarev)=== The fifth ''S6'' defines the size of stairs S10 O10 S0 O1 S6 O0 G0 I255 O0 B24 t10 G1 I1 O1 O2 G2 I255 O2 S35 T G2 B6 S0 B15 t10 ==='''Saurons eye''' (By TrolledWoods)=== Prints saurons eye if ''ascii output''. Takes no inputs S206 O132 S10 T S156 O97 S1 i97 S0 O7 G97 I237 O131 G97 i7 S1 i131 G131 B42 S0 B26 S0 O105 G132 I45 O131 G132 i105 S1 i131 G131 B68 S0 B52 G105 i7 S200 O105 G7 B94 G105 B102 S255 i7 i105 S0 B76 S46 T S0 B110 S35 T S0 B110 G97 B118 S0 B12 S1 i132 G132 B255 S0 B4 ==='''Snake''' (By Horsey)=== Uses ''ascii output'' and ''ascii input''. Requires a terminal with support for [https://en.wikipedia.org/wiki/ANSI_escape_code ANSI escape codes] to clear the screen and show colors. Can be run on an interpreter which does not block on <code>R</code> if no input is available, instead setting X to its previous value or another character such as <code>NULL</code>, <code>EOT</code>, <code>ETX</code> or -1 (255). Such behavior, while not incompatible with the specification, is non standard. S255 O95 S27 O1 S28 O2 S29 O3 S255 O165 S3 O33 S20 O34 S27 T S91 T S50 T S74 T S10 T S34 O151 S95 T G151 I255 O151 B34 S0 B26 S10 T S16 O152 S255 O156 O157 S124 T S16 O153 G33 O158 g158 O255 B73 S16 O159 S0 O160 G160 A152 O160 G159 I255 O159 B63 S0 B54 G160 I240 A153 O160 O254 G255 s95 I1 A254 B108 G158 I255 O158 B79 S0 B47 G160 O255 G34 O254 G255 s95 I1 A254 B90 S0 B104 S27 T S91 T S57 T S49 T S109 T S219 T S0 B120 S32 T S0 B120 S27 T S91 T S57 T S50 T S109 T S219 T G157 s156 O157 i153 G153 B128 S0 B45 S27 T S91 T S48 T S109 T S124 T S10 T G152 I255 O152 B146 S0 B41 S34 O154 S196 T G154 I255 O154 B156 S0 B148 G33 O161 G1 O163 g33 O170 G161 I255 O162 g162 o161 G162 O161 B172 S0 B162 R I152 B183 I254 B191 I255 B187 I255 B195 S0 B197 S1 O165 S0 B197 S16 O165 S0 B197 S240 O165 S0 B197 S255 O165 G163 A165 O1 G34 O255 G1 O254 G255 s95 I1 A254 B211 S0 B217 S1 i33 G170 o33 s254 O34 G33 O166 G33 O167 G167 O255 G166 O254 G255 s95 I1 A254 B239 g167 O255 g166 O254 G255 s95 I1 A254 B255 G167 I255 O167 B245 S0 B221 G166 I255 O166 B251 S0 B219 S0 B14 S0 ==Implementations== {| class="wikitable" |- ! Name !! Meaning |- | PC || Parse Input Supports Characters (eg. <code>Sa</code> gets read as <code>S97</code>; <code>S1</code> gets read as <code>S49</code>) |- | PM || Parse Input Supports Mixed (eg. <code>Sa</code> gets read as <code>S97</code>; <code>(char)1</code> gets read as <code>S1</code>) |- | PN || Parse Input Supports Numbers (eg. <code>Sa</code> gets rejected; <code>S1</code> gets read as <code>S1</code>) |- | PNN || Parse Input Supports Negative Numbers (eg. <code>Sa</code> gets rejected; <code>S-1</code> gets read as <code>S255</code>) |- | IC || Input Supports Characters (eg. <code>(char)a</code> gets read as <code>(uint8)97</code>; <code>(char)1</code> gets read as <code>(uint8)49</code>) |- | IM || Input Supports Mixed (eg. <code>(char)a</code> gets read as <code>(uint8)97</code>; <code>(char)1</code> gets read as <code>(uint8)1</code>) |- | IN || Input Supports Numbers (eg. <code>(char)a</code> gets rejected; <code>(char)1</code> gets read as <code>(uint8)1</code>) |- | INN || Input Supports Negative Numbers (eg. <code>(char)a</code> gets rejected; <code>(char)-1</code> gets read as <code>(uint8)255</code>) |- | OC || Output Supports Characters (eg. <code>(uint8)97</code> gets outputted as <code>(char)a</code>; <code>(uint8)49</code> gets outputted as <code>(char)1</code>) |- | ON || Output Supports Numbers (eg. <code>(uint8)97</code> gets outputted as <code>(string)97</code>) |} {| class="wikitable sortable" |- ! Language !! Base (ROM/RAM/BOTH) !! PC !! PM !! PN !! PNN !! IC !! IM !! IN !! INN !! OC !! ON !! Authors !! Link |- | Python | bgcolor="#9999ff" | ROM | bgcolor="#ff9999" | N || bgcolor="#ff9999" | N || bgcolor="#99ff99" | Y || bgcolor="#99ff99" | Y | bgcolor="#99ff99" | Y || bgcolor="#ff9999" | N || bgcolor="#99ff99" | Y || bgcolor="#99ff99" | Y | bgcolor="#99ff99" | Y || bgcolor="#99ff99" | Y | *[[User:Geek_Joystick]] *TwistedLlama || [https://py3.codeskulptor.org/#user305_FoyrT6WzZgLLiYZ.py codeskulptor] |- | Node.JS | bgcolor="#ff99ff" | BOTH | bgcolor="#ff9999" | N || bgcolor="#99ff99" | Y || bgcolor="#99ff99" | Y || bgcolor="#ff9999" | N | bgcolor="#ff9999" | N || bgcolor="#99ff99" | Y || bgcolor="#99ff99" | Y || bgcolor="#ff9999" | N | bgcolor="#99ff99" | Y || bgcolor="#99ff99" | Y | *[[User:ZippyMagician]] || [https://repl.it/@ZippyMagician/GORBITSA repl_it] |- | JavaScript | bgcolor="#9999ff" | ROM | bgcolor="#ff9999" | N || bgcolor="#ff9999" | N || bgcolor="#99ff99" | Y || bgcolor="#ff9999" | N | bgcolor="#ff9999" | N || bgcolor="#ff9999" | N || bgcolor="#99ff99" | Y || bgcolor="#ff9999" | N | bgcolor="#ff9999" | N || bgcolor="#99ff99" | Y | *Sir Felix Delazar || [https://sirfelixdelazar.github.io/GORBITSA/ Site] |- | C | bgcolor="#ff99ff" | BOTH | bgcolor="#99ff99" | Y || bgcolor="#99ff99" | Y || bgcolor="#99ff99" | Y || bgcolor="#99ff99" | Y | bgcolor="#99ff99" | Y || bgcolor="#99ff99" | Y || bgcolor="#99ff99" | Y || bgcolor="#99ff99" | Y | bgcolor="#99ff99" | Y || bgcolor="#99ff99" | Y | *[[User:X39]] || [https://repl.it/@killerx29/EsoLang-GORBITSA#main.c repl_it] |- | Brainfuck | bgcolor="#9999ff" | ROM | bgcolor="#99ff99" | Y || bgcolor="#ff9999" | N || bgcolor="#ff9999" | N || bgcolor="#ff9999" | N | bgcolor="#99ff99" | Y || bgcolor="#ff9999" | N || bgcolor="#ff9999" | N || bgcolor="#ff9999" | N | bgcolor="#99ff99" | Y || bgcolor="#ff9999" | N | *Gorbit99 || [https://esolangs.org/wiki/GORBITSA/bf-interpreter /bf-interpreter] |- | Python3 | bgcolor="#9999ff" | ROM | bgcolor="#ff9999" | N || bgcolor="#ff9999" | N || bgcolor="#99ff99" | Y || bgcolor="#ff9999" | N | bgcolor="#99ff99" | Y || bgcolor="#ff9999" | N || bgcolor="#99ff99" | Y || bgcolor="#ff9999" | N | bgcolor="#99ff99" | Y || bgcolor="#99ff99" | Y | *[[User:Chibill|Chibill]] ([[User talk:Chibill|talk]]) || [https://gist.github.com/wgaylord/46442e813919a4b1f1a3136e1fbb54df GORBITSA to C Compiler] |} [[Category:Languages]] [[Category:2020]] [[Category:Implemented]] [[Category:Low-level]] [[Category:Unknown computational class]]'
Unified diff of changes made by edit (edit_diff)
'@@ -363,4 +363,9 @@ Prints saurons eye if ''ascii output''. Takes no inputs S206 O132 S10 T S156 O97 S1 i97 S0 O7 G97 I237 O131 G97 i7 S1 i131 G131 B42 S0 B26 S0 O105 G132 I45 O131 G132 i105 S1 i131 G131 B68 S0 B52 G105 i7 S200 O105 G7 B94 G105 B102 S255 i7 i105 S0 B76 S46 T S0 B110 S35 T S0 B110 G97 B118 S0 B12 S1 i132 G132 B255 S0 B4 + +==='''Snake''' (By Horsey)=== +Uses ''ascii output'' and ''ascii input''. Requires a terminal with support for [https://en.wikipedia.org/wiki/ANSI_escape_code ANSI escape codes] to clear the screen and show colors. Can be run on an interpreter which does not block on <code>R</code> if no input is available, instead setting X to its previous value or another character such as <code>NULL</code>, <code>EOT</code>, <code>ETX</code> or -1 (255). Such behavior, while not incompatible with the specification, is non standard. + + S255 O95 S27 O1 S28 O2 S29 O3 S255 O165 S3 O33 S20 O34 S27 T S91 T S50 T S74 T S10 T S34 O151 S95 T G151 I255 O151 B34 S0 B26 S10 T S16 O152 S255 O156 O157 S124 T S16 O153 G33 O158 g158 O255 B73 S16 O159 S0 O160 G160 A152 O160 G159 I255 O159 B63 S0 B54 G160 I240 A153 O160 O254 G255 s95 I1 A254 B108 G158 I255 O158 B79 S0 B47 G160 O255 G34 O254 G255 s95 I1 A254 B90 S0 B104 S27 T S91 T S57 T S49 T S109 T S219 T S0 B120 S32 T S0 B120 S27 T S91 T S57 T S50 T S109 T S219 T G157 s156 O157 i153 G153 B128 S0 B45 S27 T S91 T S48 T S109 T S124 T S10 T G152 I255 O152 B146 S0 B41 S34 O154 S196 T G154 I255 O154 B156 S0 B148 G33 O161 G1 O163 g33 O170 G161 I255 O162 g162 o161 G162 O161 B172 S0 B162 R I152 B183 I254 B191 I255 B187 I255 B195 S0 B197 S1 O165 S0 B197 S16 O165 S0 B197 S240 O165 S0 B197 S255 O165 G163 A165 O1 G34 O255 G1 O254 G255 s95 I1 A254 B211 S0 B217 S1 i33 G170 o33 s254 O34 G33 O166 G33 O167 G167 O255 G166 O254 G255 s95 I1 A254 B239 g167 O255 g166 O254 G255 s95 I1 A254 B255 G167 I255 O167 B245 S0 B221 G166 I255 O166 B251 S0 B219 S0 B14 S0 ==Implementations== '
New page size (new_size)
19587
Old page size (old_size)
18005
Lines added in edit (added_lines)
[ 0 => '', 1 => '==='''Snake''' (By Horsey)===', 2 => 'Uses ''ascii output'' and ''ascii input''. Requires a terminal with support for [https://en.wikipedia.org/wiki/ANSI_escape_code ANSI escape codes] to clear the screen and show colors. Can be run on an interpreter which does not block on <code>R</code> if no input is available, instead setting X to its previous value or another character such as <code>NULL</code>, <code>EOT</code>, <code>ETX</code> or -1 (255). Such behavior, while not incompatible with the specification, is non standard.', 3 => '', 4 => ' S255 O95 S27 O1 S28 O2 S29 O3 S255 O165 S3 O33 S20 O34 S27 T S91 T S50 T S74 T S10 T S34 O151 S95 T G151 I255 O151 B34 S0 B26 S10 T S16 O152 S255 O156 O157 S124 T S16 O153 G33 O158 g158 O255 B73 S16 O159 S0 O160 G160 A152 O160 G159 I255 O159 B63 S0 B54 G160 I240 A153 O160 O254 G255 s95 I1 A254 B108 G158 I255 O158 B79 S0 B47 G160 O255 G34 O254 G255 s95 I1 A254 B90 S0 B104 S27 T S91 T S57 T S49 T S109 T S219 T S0 B120 S32 T S0 B120 S27 T S91 T S57 T S50 T S109 T S219 T G157 s156 O157 i153 G153 B128 S0 B45 S27 T S91 T S48 T S109 T S124 T S10 T G152 I255 O152 B146 S0 B41 S34 O154 S196 T G154 I255 O154 B156 S0 B148 G33 O161 G1 O163 g33 O170 G161 I255 O162 g162 o161 G162 O161 B172 S0 B162 R I152 B183 I254 B191 I255 B187 I255 B195 S0 B197 S1 O165 S0 B197 S16 O165 S0 B197 S240 O165 S0 B197 S255 O165 G163 A165 O1 G34 O255 G1 O254 G255 s95 I1 A254 B211 S0 B217 S1 i33 G170 o33 s254 O34 G33 O166 G33 O167 G167 O255 G166 O254 G255 s95 I1 A254 B239 g167 O255 g166 O254 G255 s95 I1 A254 B255 G167 I255 O167 B245 S0 B221 G166 I255 O166 B251 S0 B219 S0 B14 S0' ]
Unix timestamp of change (timestamp)
1592732943