diff options
| author | dozens | 2024-05-29 19:26:41 -0600 |
|---|---|---|
| committer | dozens | 2024-06-02 21:44:17 -0600 |
| commit | 7c07d6e6ececbf73e18a639e00b3690d4827e12a (patch) | |
| tree | 7d948da1b634d100feb32215dd5d263c5b01ab8b /lib/flip.fnl | |
| parent | f265d24c0cacb92c7f7db19f364a155d87938184 (diff) | |
tests
Diffstat (limited to 'lib/flip.fnl')
| -rw-r--r-- | lib/flip.fnl | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/flip.fnl b/lib/flip.fnl new file mode 100644 index 0000000..9d21b63 --- /dev/null +++ b/lib/flip.fnl @@ -0,0 +1,6 @@ +(fn flip [t] + "takes a table of {key value} and returns a table of {value key}" + (collect [k v (pairs t)] (values v k))) + +{: flip} + |
