Bsh/tests/functions/recursive_call.sh

12 lines
113 B
Bash

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