Appearance
function
A set of code that can be "called" to run it.
func example() { bark("this code is only ran when we call the function") } example(); # call the function
isfunction(value)
Returns true if value is a function.
true
value
bark(isfunction(push)); # true!