diff options
author | Marvin Borner | 2024-03-02 16:13:20 +0100 |
---|---|---|
committer | Marvin Borner | 2024-03-02 16:13:20 +0100 |
commit | 46cc8f5b0da07d8c7cb354c7b7a281b8d0f3d7bf (patch) | |
tree | 83bd64ca498117fddf94f9271f1327081b1e0018 /std/Number/Bruijn.bruijn | |
parent | eff903fc61b060b6333cb60bfced95e44da000ba (diff) |
Several additions to std
Some weren't committed for a year!
Diffstat (limited to 'std/Number/Bruijn.bruijn')
-rw-r--r-- | std/Number/Bruijn.bruijn | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/std/Number/Bruijn.bruijn b/std/Number/Bruijn.bruijn new file mode 100644 index 0000000..744d9a1 --- /dev/null +++ b/std/Number/Bruijn.bruijn @@ -0,0 +1,23 @@ +# MIT License, Copyright (c) 2023 Marvin Borner +# De Bruijn numeral system (named by me) +# proof that this numeral system does not support zero/eq/sub/etc. is in +# Wadsworth, Christopher. "Some unusual λ-calculus numeral systems." +# very sad indeed + +:import std/Combinator . + +# increments De Bruijn numeral +inc [[[2 1]]] + +++‣ inc + +:test (++(+0d)) ((+1d)) +:test (++(+5d)) ((+6d)) + +# decrements De Bruijn numeral +dec [[1 0 0]] + +--‣ dec + +:test (--(+1d)) ((+0d)) +:test (--(+5d)) ((+4d)) |