From 917746f44f399cf891c79b502a73da28c201eae3 Mon Sep 17 00:00:00 2001 From: Mark Date: Thu, 3 Aug 2023 14:04:27 -0700 Subject: [PATCH] Updated README --- README.md | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/README.md b/README.md index be0aca8..ee42a5a 100644 --- a/README.md +++ b/README.md @@ -65,9 +65,4 @@ Daisy instead provides four functions (`fromCelsius`, `toCelsius`, `fromFahrenhe ## Multiplication Order -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 - -The assignment operator `=` returns its value, and can thus be used inside of an expression. For example, `(a = 2) + 2` assigns `a` to `2` and returns `4`. This only works for variable assignment. \ No newline at end of file +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. \ No newline at end of file