10 lines
143 B
Plaintext
10 lines
143 B
Plaintext
-- main.mcl --
|
|
class foo($x) {
|
|
$x = "hello" # test shadowing again
|
|
|
|
test ["${x}",] {}
|
|
}
|
|
include foo("nope")
|
|
-- OUTPUT --
|
|
Vertex: test[hello]
|