icfp14/dummy
Stefan Bühler 6aab9b9c2e next
2011-06-18 20:23:56 +02:00

19 lines
206 B
Bash
Executable File

#!/bin/sh
opp() {
read lr
case $lr in
1) read card; read slot;;
2) read slot; read card;;
esac
}
if [ $1 = "1" ]; then
opp
fi
while [ true ]; do
echo "1"
echo "I"
echo "0"
opp
done