JanetDocsSourcePlaygroundI'm feeling luckyCommunityGitHub sign in

neg?

core-api


    function
    boot.janet on line 909, 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