racket/collects/frtime/demos/mouse.ss
Jay McCarthy 02404e553a Turning to #lang when possible
svn: r15257
2009-06-24 19:46:24 +00:00

12 lines
308 B
Scheme

#lang frtime
(require frtime/animation)
(display-shapes
(list
(make-circle mouse-pos 10 "blue")
(make-graph-string (make-posn 20 20)
(format "(~a, ~a)"
(posn-x mouse-pos)
(posn-y mouse-pos))
"black")))