Τρίτη 14 Μαρτίου 2023

Revision 22 Version 12

We can pass a number to string using += or = (or <= for global variables) . This not works for arrays of type string (maybe I fix it later).

string s
s+=100 // revision 22
print s="100"  // true


s$="value:"  // we can't use string s$
s$+=12.2323 // revision 22
print s$="value:12.2323"


s$=1212 // revision 22
print s$="1212"


global string k
k<=123.2343423423423432@
print k="123.2343423423423432"  // true


Δεν υπάρχουν σχόλια:

Δημοσίευση σχολίου

You can feel free to write any suggestion, or idea on the subject.