floating?

checks if given value is of type :floating


Parameters

floating? value :any

Returns

  • :logical

Examples

copy
print floating? 3.14 ; true print floating? 123 ; false print floating? "hello" ; false

Related