summary refs log tree commit diff
path: root/lib/table.fnl
diff options
context:
space:
mode:
authordozens2024-06-15 21:15:59 -0600
committerdozens2024-06-18 19:43:51 -0600
commitce09973e7cacccdc779f91b8e6e48a520b9f9f4d (patch)
treedfa96b0558981278d95395be24668b15ac03732a /lib/table.fnl
parent1250f9f057c2e21a0edab87f0a6003a25decd1b7 (diff)
feat: add end game
Diffstat (limited to 'lib/table.fnl')
-rw-r--r--lib/table.fnl17
1 files changed, 17 insertions, 0 deletions
diff --git a/lib/table.fnl b/lib/table.fnl
new file mode 100644
index 0000000..f40c299
--- /dev/null
+++ b/lib/table.fnl
@@ -0,0 +1,17 @@
+(local {: contains} (require :lib.contains))
+(local {: head} (require :lib.head))
+(local {: keys} (require :lib.keys))
+(local {:kvflip invert} (require :lib.kvflip))
+(local {:pprint print} (require :lib.tableprint))
+(local {: slice} (require :lib.slice))
+(local {: tail} (require :lib.tail))
+
+{
+ : contains
+ : head
+ : keys
+ : invert
+ : print
+ : slice
+ : tail
+ }