11 lines
157 B
Plaintext
11 lines
157 B
Plaintext
-- main.mcl --
|
|
$wat = $x
|
|
$f = func($x) {
|
|
$wat
|
|
}
|
|
|
|
$name = $f("foo")
|
|
test "${name}" {}
|
|
-- OUTPUT --
|
|
# err: errSetScope: var `$x` does not exist in this scope
|