yuh, was gonna release this on Saturday but didn't finish so i released this on Sunday. Press green flag to start. Click on character to skip.
Yeah this is a pretty complex base so lemme break it down. Basics- ------------------------------------------------------------------------ Long story short this is a sort of binary base but instead of the usual digits (0,1), it uses the next two numbers (2,3). Not only that, but it includes some extra symbols to represent 1 and (-1). Symbols and their values- 2= -1 3=1 2=2 3=3 ³ ² What I mean by delayed is that there are more x digit numbers than there should be in a normal binary. Comparison- bas2 delbas2 1 (3-2) 10 2 11 3 100 (3-2)2 101 (3-2)3 110 22 111 23 1000 32 Usually the symbols other than 2 or 3 are less common and not that used compared to them. The only instance of those symbols in a number is that they are in the far left of the positional value, and they don't repeat. Examples- 23 32 33 322 323 332 333 ³ ² ² ² ² ² ² ------------------------------------------------------------------------ c2a