From aa0dbaa57c7171b57af8c45b95cae8e20a769b00 Mon Sep 17 00:00:00 2001 From: Mark Date: Wed, 2 Aug 2023 09:38:58 -0700 Subject: [PATCH] Updated README --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index b54ec4b..1e6c57e 100644 --- a/README.md +++ b/README.md @@ -56,7 +56,9 @@ The conversion operator `to` converts its left argument to the *unit* of its rig ## Multiplication Order -Implicit multiplication has a higher priority than division. `1/2 pi` will parse as `1/(2pi)`. Type `(1/2) pi` or `1/2 * pi` to get half of pi. +Implicit multiplication has a higher priority than division. `pi/2 radians` will parse as `pi/(2 radians)`. Type `(pi/2) radians` or `pi/2 * radians` to get 90 degrees. + + ## Inline Assignment