Search found 14 matches

by humpolec
Fri Aug 22, 2008 10:55 am
Forum: Common Lisp
Topic: Can I turn ASSERT off?
Replies: 6
Views: 12321

Re: Can I turn ASSERT off?

Thanks for the explanation!
I guess some time will pass until my code stops being C-like, then...
by humpolec
Thu Aug 21, 2008 4:22 pm
Forum: Common Lisp
Topic: Can I turn ASSERT off?
Replies: 6
Views: 12321

Re: Can I turn ASSERT off?

I have no problem doing it myself, I just thought Common Lisp had that functionality - even C has it after all.
by humpolec
Thu Aug 21, 2008 10:26 am
Forum: Common Lisp
Topic: Can I turn ASSERT off?
Replies: 6
Views: 12321

Can I turn ASSERT off?

Is there a mechanism to turn off compilation of the asserts when I want to compile release (optimized) code? Or do I have to redefine ASSERT manually?
by humpolec
Sun Aug 17, 2008 1:52 pm
Forum: Common Lisp
Topic: batch macro creation
Replies: 3
Views: 8141

batch macro creation

Hello everyone, I'm just starting with Lisp and I want to ask for your opinion on some things. The situation is: (defclass square () ((type :initarg :type :initform :wall :accessor square-type))) ; more slots will be added later ;; The default level (defvar *level*) (defclass level () ((width :inita...