macro
boot.janet on line 616, column 1
(tabseq head key-body & value-body)
Similar to `loop`, but accumulates key value pairs into a table.
See `loop` for details.
(tabseq [i :in (range 97 100)]
i (string/from-bytes i))
# =>
@{97 "a"
98 "b"
99 "c"}