AST
Não pode escolher mais do que 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
 
 
 
 

14 linhas
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"