Data commit

This commit is contained in:
Ingy döt Net 2023-07-01 11:58:00 -04:00
parent 7387c8f97b
commit cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions

View file

@ -0,0 +1,4 @@
' lstack top value == 0 ? skip next instruction : dont skip next instruction.
" lstack top value > 0 ? skip next instruction : dont skip next instruction.
K lstack top value == 2nd value ? skip next instruction : dont skip next instruction.
L lstack top value > 2nd value ? skip next instruction : dont skip next instruction.

View file

@ -0,0 +1,3 @@
_`Enter integer n:`T'p`n = 0`>N`Enter integer m:`T'p`m = 0`>` and `Kp`m = n`;
>`n > 0`d >`m > 0`d >Lp`m > n`;
>`m < n`;

View file

@ -0,0 +1,6 @@
Enter integer n:
i3
n > 0
Enter integer m:
i0
m = 0 and m < n