diff options
author | Marvin Borner | 2023-03-12 00:04:55 +0100 |
---|---|---|
committer | Marvin Borner | 2023-03-12 00:08:37 +0100 |
commit | 5e5069c5228f2cd39de38ace9134f57293cc7e5d (patch) | |
tree | 525f3a12f8ae5a8d093c756ac5a094a9ccedfe78 /samples/fun/thue-morse.bruijn | |
parent | e789e11f8e478fe5987101424cf5c9c32cc6a29b (diff) |
Fun
Diffstat (limited to 'samples/fun/thue-morse.bruijn')
-rw-r--r-- | samples/fun/thue-morse.bruijn | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/samples/fun/thue-morse.bruijn b/samples/fun/thue-morse.bruijn new file mode 100644 index 0000000..3f40e01 --- /dev/null +++ b/samples/fun/thue-morse.bruijn @@ -0,0 +1,10 @@ +# printf 10 | bruijn thue-morse.bruijn +# using tromp's solution, prints thue morse sequence + +:import std/Combinator . +:import std/Logic . +:import std/String . + +main [take (number! 0) tm] + xpd z [[[[0 2 [0 [[5 0 1]] (2 4)]]]]] + tm z [xpd true (0 false)] |