JanetDocsPlaygroundI'm feeling luckyGitHub sign in

each



    macro
    boot.janet on line 534, column 1

    (each x ds & body)

    Loop over each value in `ds`. Returns nil.


See also:eachkeachp1 exampleSign in to add an example
Loading...
(each item [1 2 3 4] (print item))
# prints 1
# prints 2
# prints 3
# prints 4
# => nil
pepePlayground