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

12 lines
113 B
Bash

test()
{
if $@; then
test false
else
echo end
fi
}
test true
echo "did this work ?"