[racket] status of FrTime

From: Marijn (hkBst at gentoo.org)
Date: Wed Jun 22 10:58:34 EDT 2011

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

On 06/22/11 14:42, Marijn wrote:
> Hi list,
> 
> I'm quite interested in the FrTime language, and decided to use my new
> knowledge of implementing graphical programs in Racket to try and bluff
> my way into a bit of FrTime hacking. Unfortunately it seems the
> windowing part of FrTime is a bit broken at the moment. For example:
> 
> 
> #lang frtime
> 
> (require frtime/gui/fred)
> 
> (define root (new ft-frame% (label "Summator")))
> 
> (new (ft-message% (parent root) (label milliseconds)))
> 
> (send root show #t)


I see now that I made a silly error in this program. What I should have
written was:


#lang frtime

(require frtime/gui/fred)

(define root (new ft-frame% (label "Summator")))

(new ft-message% (parent root) (label (number->string milliseconds)))

(send root show #t)


Sorry for the noise,

Marijn
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v2.0.17 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/

iEYEARECAAYFAk4CAxoACgkQp/VmCx0OL2zFnQCglAXMPoCW98D53g0xFUWW1mNP
juMAnjRsN06dcsQ2D77yvPi6WH6XLtat
=jktY
-----END PGP SIGNATURE-----


Posted on the users mailing list.