- :logical
object?
checks if given value is a custom-type object
Parameters
object? value :any
Returns
Examples
copydefine :person [name,surname][] x: to :person ["John","Doe"] print object? x ; true print object? "hello" ; false
object? value :any
copydefine :person [name,surname][] x: to :person ["John","Doe"] print object? x ; true print object? "hello" ; false