Search found 7 matches

by mcheema
Mon Jul 20, 2015 9:18 am
Forum: Common Lisp
Topic: Is there any decent GUI toolkit for MS Windows?
Replies: 13
Views: 37513

Re: Is there any decent GUI toolkit for MS Windows?

^^
Fair enough. I still just use LTK (Tk based library) in a very rudimentary way so I am no GUI expert but GTK sounds like a good way to go. Good luck.
by mcheema
Mon Jul 20, 2015 9:16 am
Forum: Common Lisp
Topic: CLISP, MPICH2, and CL-MPI
Replies: 1
Views: 7163

Re: CLISP, MPICH2, and CL-MPI

I think you might try to use clozure lisp rather than CLISP Here is an interesting write-up of clozure (CCL) on Rasberry PI http://lispm.de/ccl Also, maybe try asking on relevant forums on stack exchange. Here is one thread I found https://raspberrypi.stackexchange.com/questions/9173/how-to-install-...
by mcheema
Wed Jul 15, 2015 5:23 am
Forum: Common Lisp
Topic: 2015's CLisp implementations: Where can I find them?
Replies: 4
Views: 12271

Re: 2015's CLisp implementations: Where can I find them?

For me on OS X clozure lisp has been the easiest to use. I assume if one can afford lispworks hobbiest edition that would be better. I believe clozure works on windows too.
by mcheema
Wed Jul 15, 2015 5:13 am
Forum: Common Lisp
Topic: Is there any decent GUI toolkit for MS Windows?
Replies: 13
Views: 37513

Re: Is there any decent GUI toolkit for MS Windows?

you might also want to check qtools which seems to be fairly actively maintained and developed https://shinmera.github.io/qtools/

This project builds on commonqt and tries to provide a layer on top of that.
by mcheema
Tue Mar 12, 2013 2:23 pm
Forum: Common Lisp
Topic: novice question about QUOTE and LIST
Replies: 5
Views: 11140

Re: novice question about QUOTE and LIST

^
I get this with ccl64
by mcheema
Sun Dec 16, 2012 4:58 pm
Forum: Common Lisp
Topic: what is difference between : and :#
Replies: 2
Views: 5785

Re: what is difference between : and :#

nice explanations thx
by mcheema
Sun Dec 16, 2012 6:24 am
Forum: Common Lisp
Topic: what is difference between : and :#
Replies: 2
Views: 5785

what is difference between : and :#

I was curious about the difference if any between something like

Code: Select all

(defpackage :dummy
(:use :cl))
and

Code: Select all

(defpackage #:dummy
(:use #:cl))
which is preferred?