DEBSOURCES
Skip Quicknav
sources / haskell-typst / 0.5.0.1-1 / test / typ / compiler / break-continue-03.typ
12345678910111213
// Test joining with continue. #let x = for i in range(5) { "a" if calc.rem(i, 3) == 0 { "_" continue } str(i) } #test(x, "a_a1a2a_a4")