#!/bin/csh -f
set HOME=$home

label:

echo ""
echo "***************************************************"
echo "Cheating Policy"
echo "***************************************************"
echo ""

echo "You must do your homework assignments by yourself."
echo "Your lab assignments may allow collaboration, but only"
echo "with the other member of your project group. Each lab"
echo "assignment must be the sole work of the group turning"
echo "it in. Assignments will be closely monitored by automatic"
echo "cheat checkers, and students may be asked to explain any"
echo "suspicious similarities. The following are guidelines on"
echo "what collaboration outside of your group is authorized"
echo "and what is not:"
echo ""
echo "What is Cheating?"
echo "  * Sharing code or other electronic files: either by"
echo "    copying, retyping, looking at, or supplying a copy of a file."
echo "  * Sharing written assignments: Looking at, copying,"
echo "    or supplying a assignment."
echo "  * Exploiting outside sources: Using solutions or tools that automate"
echo "    solutions from sources other than the course book, lectures, or staff."
echo ""
echo "What is NOT Cheating?"
echo "  * Clarifying ambiguities or vague points in class handouts or textbooks."
echo "  * Helping others use the computer systems, networks, compilers,"
echo "    debuggers, profilers, or other system facilities."
echo ""
echo "Be sure to store your work in protected directories."
echo ""
echo "The usual penalty for cheating is to be removed from the"
echo "course with a failing grade. We also place a record of the"
echo "incident in the student's permanent record."
echo ""
echo "I have read and understood the cheating policy (answer 'yes')"

set response = $<

if($response != "yes") then
 goto label
endif

touch ${HOME}/213hw/.nocheat


