AST
Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 
 
 

14 righe
220 B

str = "hello"
wrl = " world!"
str[1]='a'
str[1]
str
length(str)
new = str + wrl
print("length is: ", length(new), "\n");
a = { str1: "hello", str2: " japan!" }
a[#str1]+=a[#str2]
str * 10
str * -1
str * str
str[0:5]="ok"