A frequent question on the PLT Scheme discussion list is how to implement new languages on top of PLT Scheme.
In the next release documentation explaining how to do so is included, and there is a preview here.
(via plt)
Tag: Scheme
memcached for Racket (aka PLT Scheme)
Current line number in PLT Scheme
Here is how to get the current line number programmatically in PLT Scheme (via Jay):
#lang scheme
(define-syntax (current-line-number stx)
(quasisyntax/loc stx
'#,(syntax-line stx)))
(printf "~a: ~a~n" (current-line-number) 6)
(printf "~a: ~a~n" (current-line-number) 8)
(via plt)
Scheme lectures
There is a good list of Scheme related lectures here.
OpenCL bindings for PLT Scheme
The first release of my OpenCL binding is available.
http://planet.plt-scheme.org/display.ss?owner=jaymccarthy&package=opencl.plt
— Jay
(via PLT)
Erlang style programming in PLT
bzlib/thread provides additional concurrency constructs by building on top of PLT Scheme’s concurrency primitives to help simplify programming in message passing style that Erlang has helped popularized.
(via PLT)
Genetic programming in PLT Scheme
If anyone here is interested in genetic programming, the PLT implementation of my Push/PushGP system, for which several of you provided help over the last few weeks, is posted at http://hampshire.edu/lspector/schush.ss
–Lee
(via PLT)
The beginnings of Scheme on the Wii
The beginnings of Scheme on the Wii via Gambit and the efforts of Sean Charles are discussed here.
Write Android and Webapps in PLT Scheme with Moby
Here is a post over at Hacker News linking to how to write Android and web apps with Moby.
(via plt)
PLT Scheme v4.2.5 adds real parallelism and class contracts
PLT Scheme v4.2.5 adds real parallelism and class contracts.
Awesome.
(via Eli)