DEBSOURCES
Skip Quicknav
sources / haskell-typst / 0.5.0.1-1 / test / typ / compiler / break-continue-01.typ
1234567891011121314
// Test joining with break. #let i = 0 #let x = while true { i += 1 str(i) if i >= 5 { "." break } } #test(x, "12345.")