summaryrefslogtreecommitdiff
path: root/tests/typ/control/let.typ
blob: e609d3a9c9c833c5d184dd8a3b7c56496855e9e6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
// Test let bindings.
// Ref: false

---
// Automatically initialized with none.
#let x
#test(x, none)

// Manually initialized with one.
#let x = 1
#test(x, 1)