RosettaCodeData/Task/Variable-size-Get/BASIC256/variable-size-get.basic
2023-07-01 13:44:08 -04:00

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