JanetDocsSourcePlaygroundI'm feeling luckyCommunityGitHub sign in

++

core-api


    macro
    boot.janet on line 139, 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