cl-graph

Discussion of Common Lisp
Post Reply
CLProject09

cl-graph

Post by CLProject09 » Sun May 24, 2009 6:22 am

Hello,
I am a new beginner in Lisp and I would like to use the cl-graph library (in order to make new classes). My teacher told me to write :
(cl-user::asdf :cl-graph)
(use-package :cl-graph) but that does not work.
Could you hepl me ?
Thanks a lot
MS

Wodin
Posts: 56
Joined: Sun Jun 29, 2008 8:16 am

Re: cl-graph

Post by Wodin » Tue May 26, 2009 12:25 pm

I think you probably need ASDF help rather than cl-graph help :)

Try starting with:

Code: Select all

(asdf:oos 'asdf:load-op :cl-graph)
Also, maybe this helps: http://www.metabang.com/unclog/publisha/atinybit.html

I've never used cl-graph, though.

Post Reply