#!/bin/tcsh -f

# Example of the "here document"
cat <<here_doc

* * * * MAIN MENU * * * * 

     1. Thing 1
     2. Thing 2
     3. Thing 3
     4. Thing 4
     5. Exit

* * * * * * * * * * * * *
here_doc

# Use -n option with echo so user enters choice 
# on same line as prompt
echo -n "Please make a selection: "
