#!/bin/bash

# use-moo-functs.sh
# an example of a script using functions it gets access
#     to via a source command
#
# requires: just-moo-functs.sh
#
# by: Sharon Tuttle
# last modified: 2022-11-16

source just-moo-functs.sh

echo "trying to call moo5"
moo5
echo "trying to call custom_moo"
custom_moo Elmo
echo "end of use-moo-functs.sh
"