Files
pebble/examples/15_resolution.peb
T
2026-02-06 15:05:53 +01:00

11 lines
96 B
Plaintext

let a = "global"
{
fun show_a() {
print(a)
}
show_a()
let a = "block"
show_a()
}