diff options
author | Peter Mikkelsen <petermikkelsen10@gmail.com> | 2022-01-21 16:05:41 +0000 |
---|---|---|
committer | Peter Mikkelsen <petermikkelsen10@gmail.com> | 2022-01-21 16:05:41 +0000 |
commit | 80ebae7887e21f58ef09a18515e5521c5162053c (patch) | |
tree | 6b62ff6497d44fc9fe5c05b9a92a65cf2efee386 /hybrids.c | |
parent | e12450d52dce2d6271d12720bf18175d082a0003 (diff) |
Get ready for hybrids
Diffstat (limited to 'hybrids.c')
-rw-r--r-- | hybrids.c | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/hybrids.c b/hybrids.c new file mode 100644 index 0000000..3483d42 --- /dev/null +++ b/hybrids.c @@ -0,0 +1,21 @@ +#include <u.h> +#include <libc.h> +#include <bio.h> + +#include "apl9.h" + +Rune primhybridnames[] = L"/\⌿⍀"; + +fndyad hybridfunctiondefs[] = { + 0, /* / */ + 0, /* \ */ + 0, /* ⌿ */ + 0, /* ⍀ */ +}; + +opmonad hybridoperatordefs[] = { + 0, /* / */ + 0, /* \ */ + 0, /* ⌿ */ + 0, /* ⍀ */ +};
\ No newline at end of file |