Files
pebble/examples/15_resolution.peb

11 lines
96 B
Plaintext

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