moved run to xrun file

This commit is contained in:
Matthias Felleisen 2013-10-18 15:36:26 -04:00
parent 5de5eaaa14
commit 29de8558c9
3 changed files with 15 additions and 5 deletions

View File

@ -1,5 +1,7 @@
#lang scheme
(provide run)
(require 2htdp/universe htdp/testing)
;; rotate through a bunch of players with the ball until nobody is left
@ -84,4 +86,4 @@
(on-msg switch)
(on-disconnect disconnect)))
(run 'go)
; (run 'go)

View File

@ -3,7 +3,7 @@
exec mred -qu "$0" ${1+"$@"}
|#
#lang scheme
#lang racket
(require "shared.ss")

View File

@ -1,3 +1,11 @@
mred balls.ss &
./player carl &
./player sam &
#! /bin/sh
#|
exec racket -tm "$0" ${1+"$@"}
|#
#lang racket
(require 2htdp/universe "balls.rkt" "shared.ss")
(launch-many-worlds (run 'go) (make-player 200 "carl") (make-player 200 "sam"))