Question: Common Lisp highlighting types in source code
- From: klohmuschel@xxxxxxxx
- Date: Fri, 9 Jan 2009 01:26:51 -0800 (PST)
Hi:
Please hang on: I post things here because I do not want to hear nasty
comments from mad cowboys (Kenny, okay retard Erik N. retired, and
some other weird characters) over there on comp.lang.lisp.
I have a question: I use types in Bigloo a lot not so much for the
sake of catching type errors but to improve readability and
documenting my code. I learned this technique when learning Clean. You
can program without 'giving types' in Clean though.
this is readable:
==
(define (a::vector b::bstring g::class-g) ...)
==
this sucks (not only error prone but also cumbersome and hard to
read):
==
(define (a_vector b_string g_class_g) ...)
==
[in Emacs types would be highlighted].
Is this sort of technique available in Common Lisp. I haven't found
anything on Google (not sure if 'declare' is what I am after).
Thanks, Frankenstein
.
- Follow-Ups:
- Re: Question: Common Lisp highlighting types in source code
- From: Pascal Costanza
- Re: Question: Common Lisp highlighting types in source code
- From: Pascal J. Bourguignon
- Re: Question: Common Lisp highlighting types in source code
- From: Pascal J. Bourguignon
- Re: Question: Common Lisp highlighting types in source code
- Prev by Date: Bigloo 3.2a official release. Junia'a release
- Next by Date: Re: Question: Common Lisp highlighting types in source code
- Previous by thread: Bigloo 3.2a official release. Junia'a release
- Next by thread: Re: Question: Common Lisp highlighting types in source code
- Index(es):
Relevant Pages
|