10 lines
166 B
Plaintext
10 lines
166 B
Plaintext
-- main.mcl --
|
|
# should be out of scope, and a compile error!
|
|
if $b {
|
|
}
|
|
if true {
|
|
$b = true
|
|
}
|
|
-- OUTPUT --
|
|
# err: errSetScope: var `$b` does not exist in this scope
|