diff options
| author | mryouse | 2022-06-25 03:09:16 +0000 |
|---|---|---|
| committer | mryouse | 2022-06-25 03:09:16 +0000 |
| commit | f898ef90406f636efb9331493852646f84bb9c10 (patch) | |
| tree | ba0501ff45368c65e8395c281f82f6f9b5d2208d /neighborcat | |
| parent | 4b4d2f09215f954caeb196c0b6f2cabb02e3c996 (diff) | |
bugfix: () doesn't denote an empty list
Diffstat (limited to 'neighborcat')
| -rw-r--r-- | neighborcat/neighborcat.neb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/neighborcat/neighborcat.neb b/neighborcat/neighborcat.neb index f475cf2..61954e8 100644 --- a/neighborcat/neighborcat.neb +++ b/neighborcat/neighborcat.neb @@ -56,7 +56,7 @@ ; prevent a panic on (first ()) (func safe-first (inp) (if (empty? inp) - () + (list) (first inp))) (func wander () |
