about summary refs log tree commit diff stats
path: root/rnd/sketch.rkt
blob: dd2577463992afeb84d81b214a6d036d417d5862 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
#lang racket

;; place for notes and tests and sketches and all that jazz


; the sketch of how maybe to access these nested hash tables (this has become hillariously difficult to solve)
; (define path '(some deep key)) -> 

; (for/fold ((ht deep-hash-table)) 
;     ((key (in-list path)) 
;         #:break 
;         (not (hash? ht))) 
;     (hash-ref ht key))