20 Oct 24
A collection of useful procedures divided into modules for Racket.
20 Feb 24
10 Jan 24
A fun book about making a compiler for racket starting from x86.
24 Aug 23
17 Aug 23
A fun book about making a compiler for racket starting from x86.
21 Jun 23
A racket lang-extension for debugging, based on sugar/debug.
08 Apr 23
04 Dec 22
A collection of small functions to help make Racket code simpler & more readable. Well, according to me, anyhow.
03 Dec 22
Qi is a hosted language on the Racket platform. If you don’t already have Racket installed, you will need to install it. Then, install Qi at the command line using:
12 Oct 21
… in which we look how we can implement the classic Asteroids game game using only the Racket language and its graphics facilities. We’ll implement a basic game engine, a basic physics engine and the game itself, and manage to do it in about 1000 lines of code.
25 Jul 21
04 Apr 21
09 Mar 21
#lang racket/base
(require web-server/http)
(define (hello req) (response/output (lambda (out)
(displayln "Hello, world!" out))))