Since 5/5/2012 11:16:09 AM, mulkiatsch has written 1 articles and participated in 105 conversations. mulkiatsch signature: mulkiatsch
mulkiatsch's articles:
Items(1) /1
CMUCL/SBCL: problems defining lots of metaobjects230 (2/26/2008 2:33:45 PM) comp.lang.lisp Hi, On my Debian-branded CMUCL (19d-20061116-4_i386), the following behaviour rather puzzles me: * (loop for i from 1 to 150 for class-name-1 = (intern (format nil "MULK-SUPERCLASS-~D" i)) for... Matthias
fasl files generated by SBCL232 (4/19/2008 1:22:26 PM) comp.lang.lisp I used to have sblc 1.0.6 which comes with the installation package on Ubuntu. When I was using it somehow it didn't generate the *.fasl file after the compilation. Now that I compiled the lates 1.0.15, I start... lispercat(84)
Iteration in lisp7024 (4/22/2008 12:51:45 AM) comp.lang.lisp If you want to iterate through a list, should you use a recursive function or a loop? ... rigaha(9)
Problem with build on ubuntu 8.04437 (4/30/2008 12:26:50 PM) comp.lang.lisp Hi, I get clisp-2.44.1.tar.gz, uncompress it in my Ubuntu 8.04 - (uname -r gives 2.6.24-16-generic) and done ../configure --build build-dir --with-module=rawsock --ignore-absence- of-libsigsegv (actually, I ha... angelpopov(17)
delete command weirdness6327 (5/13/2008 2:06:22 AM) comp.lang.lisp Anyone have an explanation for the inability of the delete command to delete the car from a list (at least in clisp)? I guess this falls under the category of "never expect destructive list functions to act ho... ntc6(22)
lisp exercises #21327 (6/7/2008 1:00:14 PM) comp.lang.lisp Hello again comp.lang.lisp I am doing some simple exercises located in Here's what I have so far, please critisize my code. ; Lisp #1: HAS-NUMBER-P (Wilensky 8.7) (defun has-number-p (sexp) (if (listp sexp... vippstar(1211)
Wrapping a C++ library using ?FFI2147 (6/24/2008 10:42:04 PM) comp.lang.lisp Hey guys, I'm part of the way through writing some lisp gibberish that wraps a C++ library. The way I am doing it is by generating a C interface kind of like what CFront would have had to do and generating ... sohail1(186)
Why not a setf-able NIL ?5832 (10/1/2008 9:35:15 AM) comp.lang.lisp As we all know, in Common Lisp logical falsehood is represented by the non-symbolic atom NIL, which in turn happens to be also the empty list '(). Everything not nil is true, so in lisp 0 is true. If -however- ... kodifik(220)
Creating a new type3339 (10/21/2008 2:19:12 PM) comp.lang.lisp Ok, I want to create a new numerical type (like a set) for example: type BUG_RANGE is range -13..34; Ok, in Lisp, defining the type is a little dificult but possible: (defun is-bug-range (a) (and (typep a ... javuchi(458)