JanetDocsPlaygroundI'm feeling luckyGitHub sign in

++



    macro
    boot.janet on line 150, column 1

    (++ x)

    Increments the var x by 1.


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