JanetDocsPlaygroundI'm feeling luckyGitHub sign in

--



    macro
    boot.janet on line 151, column 1

    (-- x)

    Decrements the var x by 1.


1 exampleSign in to add an example
Loading...
(var a 2)
a        # => 2
(dec a)  # => 1
a        # => 2
(-- a)   # => 1
a        # => 1
cellularmitosisPlayground