DEBSOURCES
Skip Quicknav
sources / haskell-typst / 0.5.0.1-1 / test / typ / compiler / break-continue-05.typ
12345678910111213
// Test break in function call. #let identity(x) = x #let out = for i in range(5) { "A" identity({ "B" break }) "C" } #test(out, "AB")