JanetDocsPlaygroundI'm feeling luckyGitHub sign in

neg?



    function
    boot.janet on line 804, column 1

    (neg? x)

    Check if x is less than 0.


1 exampleSign in to add an example
Loading...
(neg? -42)  # => true
(map neg? [-1 0 1])  # => @[true false false]
cellularmitosisPlayground