diff options
Diffstat (limited to 'util.fnl')
-rw-r--r-- | util.fnl | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/util.fnl b/util.fnl deleted file mode 100644 index c884a01..0000000 --- a/util.fnl +++ /dev/null | |||
@@ -1,13 +0,0 @@ | |||
1 | ;;; UTIL.fnl | ||
2 | ;; Utility functions | ||
3 | ;; Copyright (C) 2022 Case Duckworth <acdw@acdw.net> | ||
4 | ;; License: Good Choices (https://acdw.casa/gcl) | ||
5 | |||
6 | (local util {}) | ||
7 | |||
8 | (lambda util.printlns [?sep ...] | ||
9 | "Print arguments as strings, delimited by ?SEP. | ||
10 | ?SEP defaults to '\n', but can be anything." | ||
11 | (print (table.concat [...] (or ?sep "\n")))) | ||
12 | |||
13 | util | ||