From b5fba66eb8d691b386bee5e7b43353ea32956d5d Mon Sep 17 00:00:00 2001 From: Luke Wilson Date: Sun, 9 Apr 2023 11:46:38 +0100 Subject: [PATCH] arithmetic --- README.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/README.md b/README.md index 476df978..5557cf93 100644 --- a/README.md +++ b/README.md @@ -145,6 +145,13 @@ function isKeyDown(key) => { **Technical info:** Booleans are stored as one-and-a-half bits. +## Arithmetic +DreamBerd has significant whitespace. Use spacing to specify the order of arithmetic operations. +```js +print(1 + 2*3)! //7 +print(1+2 * 3)! //9 +``` + ## Indents When it comes to indentation, DreamBerd strikes a happy medium that can be enjoyed by everyone: All indents must be 3 spaces long. ```js