Files
Bsh/tests/functions/function_in_function.sh
brice.boisson 7744ceaa33 bsh project
2022-02-08 18:50:03 +01:00

11 lines
107 B
Bash

foo()
{
bar()
{
echo "bar"
echo $@
}
}
foo salut je suis un argument
bar salut