block?

checks if given value is of type :block


Parameters

block? value :any

Returns

  • :logical

Examples

copy
print block? [1 2 3] ; true print block? #[name: "John"] ; false print block? "hello" ; false print block? 123 ; false

Related