AST
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

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