#!/bin/bash

for type in --exit --exit_ --return  --abort --fall; do
        echo
        echo "running myExit with " $type
        echo
        myExit $type --code 7
        echo "Exit Code: " $?
        echo
        echo
        read -p "Press enter to continue: " junk
done
