📝 Add "+" output (#5020)

This commit is contained in:
homersimpsons 2024-08-13 00:51:55 +02:00 committed by GitHub
parent 6a7cfde3f7
commit 8dd93f14df
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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}