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

9 lines
75 B
Bash

if true
then
foo() {
echo 'I am in foo function'
}
fi
foo