diff options
author | Marvin Borner | 2022-08-10 18:53:34 +0200 |
---|---|---|
committer | Marvin Borner | 2022-08-10 18:53:34 +0200 |
commit | 792534b3888bc1b9c33047f1c312c4e17a720885 (patch) | |
tree | b0401f5c1ca156858fb7de94a5488151be075c89 /std/Byte.bruijn | |
parent | cba3d7d21241f8db913e6e2733a8edc3a522ee62 (diff) |
Added syntactic sugar for strings & chars
Diffstat (limited to 'std/Byte.bruijn')
-rw-r--r-- | std/Byte.bruijn | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/std/Byte.bruijn b/std/Byte.bruijn new file mode 100644 index 0000000..72e2c6e --- /dev/null +++ b/std/Byte.bruijn @@ -0,0 +1,14 @@ +# MIT License, Copyright (c) 2022 Marvin Borner + +:import std/Combinator . + +:import std/List . + +# bit 0 +b0 F + +# bit 1 +b1 T + +# generates a byte with correct endianness +byte [[[[[[[[cons 0 (cons 1 (cons 2 (cons 3 (cons 4 (cons 5 (cons 6 (cons 7 empty)))))))]]]]]]]] |