6 lines
92 B
Plaintext
6 lines
92 B
Plaintext
$foo = "bad1"
|
|
func bar($foo) {
|
|
"hello " + $foo # shadows parent var
|
|
}
|
|
test bar("world") {}
|