Implementation of the UM-32 "Universal Machine" as described by the Cult of the Bound Variable
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 92e16e4c557683218ac4a563f7829330a5eca66b 13 lines 237 B view raw
1[package] 2name = "um" 3version = "0.1.0" 4edition = "2021" 5 6[dependencies] 7smallvec = { version = "1.13.2", optional = true } 8 9[features] 10default = ["reclaim-memory", "smallvec"] 11reclaim-memory = [] 12smallvec = ["dep:smallvec"] 13timing = []