echo "Do you wish to delete all your #?.xdme files"
echo "before you have the new ones installed?"
ask "Proceed?"
IF WARN
    delete REXX/#?.xdme
ENDIF

echo "WARNING: This may overwrite some files."
echo "Backup anything you want to save before proceeding."
echo "Assign GUI: to a drawer if it isn't already assigned."
ask "continue?"
IF WARN
    copy S/.edrc s:.edrc
    copy REXX/#? REXX:
    copy C/#? C:
    copy GUI/#? GUI:
ENDIF
echo "Installation complete."
echo "Put the documentation where you will."


