diff options
author | Case Duckworth | 2022-08-21 18:02:46 -0500 |
---|---|---|
committer | Case Duckworth | 2022-08-21 18:02:46 -0500 |
commit | c9a942aca66903d817b3b7df46488451a0bd7004 (patch) | |
tree | c1e45bb1a98ba12c5917f24a54c21db367a01227 /util.fnl | |
parent | Modularize (diff) | |
download | radish-c9a942aca66903d817b3b7df46488451a0bd7004.tar.gz radish-c9a942aca66903d817b3b7df46488451a0bd7004.zip |
Move into src/ fennel
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 | ||