This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
namespace Watch | |
{ | |
unsafe class MeCrash | |
{ | |
unsafe public static void Main() | |
{ | |
while(true) | |
{ | |
Undefined.Undefined.run(); | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
I = Increment the current pointer (Synonym: +) | |
D = Decrement the current pointer (Synonym: -) | |
S = Slide the pointer to the right (Synonym: >) | |
R = Reverse slide to the left (Synonym: <) | |
L = Begin a loop (Synonym: [) | |
E = End a loop (Synonym: ]) | |
C = Output the current pointer as a character (Synonym: .) | |
O = Output the current pointer as a number (No synonym) | |
N = Output a newline w/o changing the pointer (No synonym) | |
G = Get a number as a full reading of a line (No synonym) [Allows for inputting 146 in 1 line] |