restructure + lecutre 07

This commit is contained in:
SowinskiBraeden committed 2026-02-19 11:59:58 -08:00
1 parent b8c19aa341
commit 7c3198fee4
96 files changed
+458 -4

No files matched your search

+2
View File
@@ -0,0 +1,2 @@
(* bstree with records *)
type 'a t = L | N of {v: 'a; l: 'a t; r: 'a t};;