#!/bin/sh
if [ $# -lt 2 ]; then
  echo "Please give at least two parameters; host and port"
  exit
fi
export LISP_ICFP_HOST=$1
export LISP_ICFP_PORT=$2
lisp -core "source/icfp.core"
