Types and nil

type() and nil.

type() names the kind. Unset names are nil.

Goal

Print type for string, number, nil.

print(type("Nairobi"))
print(type(12))
print(type(true))
print(type(nil))
print(missing)
local city = "Kisumu"
print(type(city), city)
local units
print(units)
units = 8
print(units)