OILS
/
spec
/
testdata
/
module
/ redefinition.ysh
View on Github
|
oilshell.org
9 lines, 5 significant
1
module
'
redefinition
'
|| return 0
2
3
echo
'
redefinition
'
4
5
# duplicated definition from common.oil
6
log() {
7
echo
"
$@
"
>&2
8
}
9