12 lines
234 B
Text
12 lines
234 B
Text
i = 1 #Integer
|
|
f = 1.0 #Float
|
|
s$ = "cad" #String
|
|
dim a(99) #Array
|
|
A = {1, 2, 3} #Anonymous array
|
|
m = {"key" -> 1} #Map
|
|
|
|
print typeof(i) # 1
|
|
print typeof(f) # 2
|
|
print typeof(s$) # 3
|
|
print typeof(A) # 4
|
|
print typeof(m) # 6
|