JanetDocsSourcePlaygroundI'm feeling luckyCommunityGitHub sign in

*=

core-api


    macro
    boot.janet on line 143, column 1

    (*= x & ns)

    Shorthand for (set x (* x n)).


1 exampleSign in to add an example
Loading...
(var x 1)
(loop [n :range-to [1 5]]
  (*= x n))
x # => 120
quexxonPlayground