[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Even more nitpicks



Sorry, it seems as if my nitpicks may never end :)

Will we have an equivalent of Python's dir()?

What are your plans for big ints?

Renames:
eof-object? should be eof?... because zero? isn't called zero-num?
port2str should be called port-to-str to follow convention.

Now, a bigger issue:
case calls currently look like:
(case value
  ((key1 key2) body)
  ((key3 key4) body2))

The key stuff looks fugly IMO.
A better solution may be to use tuples for the keys:
(case value 
  (#(key1 key2) body)
  (#(key3 key4) body2))

It adds only one more character and uses an internal type.

-- 
Jonathan Hseu <vomjom@vomjom.org, vomjom@debian.org, jh4@cec.wustl.edu>
GPG ID:          5228D713
GPG fingerprint: 220B A4EF 70FE B884 CB38  F93F EA8A 1024 5228 D713