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

Compare changes

Choose any two refs to compare.

Changed files
+5 -2
.tangled
+3 -1
.tangled/workflows/clippy.yaml
··· 10 10 dependencies: 11 11 nixpkgs: 12 12 - cargo 13 + - clang 14 + - clippy 13 15 14 16 steps: 15 - - name: run clippy 17 + - name: Run clippy 16 18 environment: 17 19 RUSTFLAGS: "-Dwarnings" 18 20 command: |
+2 -1
.tangled/workflows/unit-tests.yaml
··· 10 10 dependencies: 11 11 nixpkgs: 12 12 - cargo 13 + - clang 13 14 14 15 steps: 15 - - name: run unit tests 16 + - name: Run unit tests 16 17 command: | 17 18 cargo test --all-targets --all-features