object?

checks if given value is a custom-type object


Parameters

object? value :any

Returns

  • :logical

Examples

copy
define :person [name,surname][] x: to :person ["John","Doe"] print object? x ; true print object? "hello" ; false

Related