Skip to content

RPN Arithmetic PreRelease

Pre-release
Pre-release
Compare
Choose a tag to compare
@Totobird-Creations Totobird-Creations released this 22 Sep 22:36
· 26 commits to master since this release

Language Licence Docs
Tests Version

Added:

  • RPN-ish Arithmetic
- WARNING: Multiline is not yet supported
# Peri.Py
(1 + 2) * 3 # ((1 + 2) * 3)
1 + 2 * 3   # (1 + (2 * 3))

# Rusty Peri.dot
1 2+ 3*     # ((1 + 2) * 3)
1 (2 3*)+   # (1 + (2 * 3))