From 0f77241688afb57e4f5e45cb54122723685e59d0 Mon Sep 17 00:00:00 2001 From: Joshua Bell Date: Wed, 12 Jan 2022 17:32:34 -0800 Subject: [PATCH] Reference: Add Operator Precedence table --- reference.html | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/reference.html b/reference.html index 6572442..f7d2f7e 100644 --- a/reference.html +++ b/reference.html @@ -353,6 +353,21 @@ can be literals (unquoted strings), strings, or numbers
+
String Concatenation
+ +

Operator Precedence

+

Operators are listed vertically in order of precedence, from highest to lowest. Operators are the same line are of the same priority, and in an expression are executed from left to right. This order differs from the order in some other dialects of BASIC, but does match Applesoft. + +

+