#!/bin/sh

if [ "$#" -lt 2 ]; then
	echo "Usage: runme <host> <port>"
	exit 1
fi

cd source/clients; mred -r begin.scm $1 $2

echo "Done."
