type
Determine a value's type.
Returns the name of the value's type.
Example
#type(12) \
#type(14.7) \
#type("hello") \
#type(none) \
#type([Hi]) \
#type(x => x + 1)

ParametersParameters are the inputs to a function. They are specified in parentheses after the function name.
Parameters are the inputs to a function. They are specified in parentheses after the function name.
value
anyRequiredPositionalPositional parameters are specified in order, without names.
any
RequiredPositionalPositional parameters are specified in order, without names.
The value whose type's to determine.