所以我正在尝试制作一个使用大爆炸来增长图像“HI”的程序。我把它放在画布的中心。我希望文本大小从 1 开始并在大小达到 80 时停止增长。我添加了 on-tick 但它仍然不会从 1 开始并增长。关于我做错了什么的任何想法?
编辑-
(require 2htdp/image)
(require 2htdp/universe)
(define word "HELLO WORLD" )
(define (draw-world world )
(place-image (text word world "olive")
240 210
(empty-scene 500 300)))
(define (next t)
(cond [(>= (draw-world t) 80) t]
[else (+ t 1)]))
(big-bang 1
(on-tick add1)
(to-draw draw-world)
(stop-when zero?))