[refactor] Disambiguate an if/return pair.

This commit is contained in:
Elf M. Sternberg 2015-07-26 14:58:40 -07:00
parent ca85d06931
commit bba0dc8598
1 changed files with 1 additions and 1 deletions

View File

@ -22,7 +22,7 @@ nil = (-> makeAsCell([]))()
cons = (a, b = nil) ->
return nil if (nilp a) and (nilp b)
makeAsCell if (not (a?)) then b else [a, b]
makeAsCell (if (not (a?)) then b else [a, b])
car = (a) -> a[0]