A small check to run linter.

This commit is contained in:
Elf M. Sternberg 2015-05-22 22:19:58 -07:00
parent 75b9fa18b7
commit 5c8939a7d6
1 changed files with 1 additions and 1 deletions

View File

@ -31,7 +31,7 @@ vectorToList = (v, p) ->
cons(item, vectorToList(v, p + 1))
list = (v...) ->
ln = v.length;
ln = v.length
(nl = (a) ->
cons(v[a], if (a < ln) then (nl(a + 1)) else nil))(0)