From 8dd93f14df51828033fae627d7b49a26f84d150a Mon Sep 17 00:00:00 2001 From: homersimpsons Date: Tue, 13 Aug 2024 00:51:55 +0200 Subject: [PATCH] :memo: Add "+" output (#5020) --- phix.html.markdown | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/phix.html.markdown b/phix.html.markdown index 2a199edd..08919a62 100644 --- a/phix.html.markdown +++ b/phix.html.markdown @@ -137,8 +137,8 @@ filename: learnphix.exw // Operators are always consistant; never overloaded. -- the + operator ''always adds'' - ? 2+7 - ? 'A' + 32 + ? 2+7 --> 9 + ? 'A' + 32 --> 97 -- the & operator ''always concatenates'' ? 2 & 7 --> {2,7}