Psst.. new poll here.
[email protected] web/email now available. Want one? Go here.
Cannot use outlook/hotmail/live here to register as they blocking our mail servers. #microsoftdeez
Obey the Epel!
Paste
Pasted as Scheme by ingolf jandt ( 15 years ago )
;;dosiero stelo.ss
;;(c) ingolf jandt
;;kodo por azeneco.blogspot.com
#lang slideshow
;;sxargxu objektsistemon kaj grafikan uzantinterfacon
(require scheme/class scheme/gui/base)
;;krei fenestron:
(define f (new frame% [label "Verda Stelo"]
[width 300]
[height 300]))
(require slideshow/flash)
;;krei fenestroenhavon
(new canvas% [parent f]
[paint-callback
(lambda (self dc)
(draw-pict (colorize
(filled-flash (* 0.42 (send self get-height))
(* 0.4 (send self get-width))
5 -1.6 (* -0.5 pi))
"darkgreen")
dc 0 0))])
;;montru fenestron:
(send f show #t)
Revise this Paste