complete cli memo menu

This commit is contained in:
brevalferrari 2025-06-07 20:04:22 +02:00
parent 2f5d9aed32
commit 9a5e237733
7 changed files with 152 additions and 15 deletions

View file

@ -0,0 +1,11 @@
Listed in order of precedence:
(Highest Precedence) ^ Exponentiation
% Modulo
/ Division
* Multiplication
- Subtraction
+ Addition
== != < <= >= > Comparisons (all have equal precedence)
&& and Logical AND with short-circuit
(Lowest Precedence) || or Logical OR with short-circuit