11 lines
67 B
Plaintext
11 lines
67 B
Plaintext
# $FreeBSD$
|
|
|
|
f() {
|
|
local x
|
|
readonly x=2
|
|
}
|
|
x=3
|
|
f
|
|
x=4
|
|
[ "$x" = 4 ]
|