DEBSOURCES
Skip Quicknav
sources / haskell-typst / 0.5.0.1-1 / test / typ / compiler / methods-01.typ
1234567
// Test mutating indexed value. #{ let matrix = (((1,), (2,)), ((3,), (4,))) matrix.at(1).at(0).push(5) test(matrix, (((1,), (2,)), ((3, 5), (4,)))) }