DEBSOURCES
Skip Quicknav
sources / haskell-typst / 0.5.0.1-1 / test / typ / compiler / block-06.typ
123456789101112131415
// Multiple nested scopes. #{ let a = "a1" { let a = "a2" { test(a, "a2") let a = "a3" test(a, "a3") } test(a, "a2") } test(a, "a1") }