start animate from 0 not 1

This commit is contained in:
Matthias Felleisen 2010-11-19 11:57:22 -05:00
parent 747c735eb3
commit 2a3c66b731

View File

@ -230,7 +230,7 @@
(define (run-simulation f)
(check-proc 'run-simulation f 1 "first" "one argument")
(big-bang 1 (on-draw f) (on-tick add1)))
(big-bang 0 (on-draw f) (on-tick add1)))
(define animate run-simulation)