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)