Skip to content

Instantly share code, notes, and snippets.

View Saityi's full-sized avatar

Alex Alegre Saityi

View GitHub Profile
@Saityi
Saityi / circledb.rkt
Last active February 19, 2021 16:07
'An Archaeology-inspired database' (but in Racket) (https://www.aosabook.org/en/500L/an-archaeology-inspired-database.html) (Incomplete -- does not include queries)
#lang racket
(require racket/generic
racket/match
racket/pretty
struct-update
threading)
(define flip
(curry (λ (f a b) (f b a))))