Menu
Menu
DaniWeb
Log In
Sign Up
Read
Contribute
Meet
Search
Search
About 842 results for
lisp
- Page 1
lisp
Programming
Software Development
15 Years Ago
by drjay1627
anyone here know
lisp
? i'm trying to code a trie in list. i know what to do as i already did it in ruby and python. i just need some guidance with doing the same. reply to this thread if you know
lisp
or contact me directly at< snipped email> this project is due soon so i really need help with syntax! thanks drjay
Re: Lisp
Programming
Software Development
18 Years Ago
by iamthwee
… seems like a perfectly good question that someone who knows
LISP
can answer. It the resurrections that have no questions that… the answer. If nick wants to help with anyone learning
lisp
he can. There's a code snippet section, which looks…
Re: lisp
Programming
Software Development
15 Years Ago
by tdeck
I know a little bit of Scheme, which is a dialect of
Lisp
. It would help if you could explain better what you're trying to do. Maybe post some python code that you've written.
Lisp
Programming
Software Development
19 Years Ago
by coolman2006
Does anyone know about
LISP
Programming I am trying to make this program where I …
Re: Lisp
Programming
Software Development
19 Years Ago
by coolman2006
some one please say something i am desprate to learn
Lisp
I am stuck big i knwo there some one out there to help HELP ME!!! please
Re: Lisp
Programming
Software Development
18 Years Ago
by WaltP
[QUOTE=iamthwee;305870]Hi nick, good to see your enthusiasm. But please refrain from responding to threads that are clearly dead.[/QUOTE] Why? It seems like a perfectly good question that someone who knows
LISP
can answer. It the resurrections that have no questions that are useless bumps.
Lisp: General Programming?
Programming
Software Development
13 Years Ago
by WolfShield
Hello guys, I am very interested in the Common
Lisp
programming language, but I need to know if it can … programs after that, then make some other program, etc. Would
Lisp
work for all of these? Also, I haven't heard… anything about
Lisp
GUI programming. Does
Lisp
support GUI programming, or can I use some other…
Lisp...the language, not the speech impediment
Programming
Computer Science
13 Years Ago
by mlhuff12
…number of our labs will be programming with
Lisp
. Here on DaniWeb under Software Development I did… not see a category for
Lisp
. I was wondering if anybody out there …knew of any good
Lisp
forums that I could refer to when …problems(at least problems pertaining to the language
Lisp
that is), which I'm sure will …
Re: Lisp: General Programming?
Programming
Software Development
13 Years Ago
by TrustyTony
Maybe you can find something from here: [url]http://www.
lisp
.org/alu/res-
lisp
-tools#guitool[/url]
Re: Lisp i know its pythlon but please help
Programming
Software Development
19 Years Ago
by vegaseat
… forum. DaniWeb does not a have a specific forum for
Lisp
, but you can try the more general forums [url]http… will reach folks that program more in
Lisp
at: [url]http://forums.belution.com/en/
lisp
/[/url] or [url]http://www.tek… at: [url]http://www.cs.sfu.ca/CC/310/pwfong/
Lisp
/[/url] My advice is of course learn Python, but that…
Re: Lisp load function in windows
Programming
Computer Science
18 Years Ago
by Mushy-pea
If the backslash is used to start escape sequences in
Lisp
, the compiler will remove it and replace it with…Try escaping each backslash with a backslash i.e. [code=
lisp
] (load "c:\\users\\documents\\john\\schoolwork\\cs\\3600…\\project3.
lisp
") [/code] If this fixes the problem it …
Re: Lisp load function in windows
Programming
Computer Science
16 Years Ago
by rockout690
… "c:\users\documents\john\schoolwork\cs\3600\project3.
lisp
") But it says it can't find the …file c:usersdocumentsjohnschoolworkcs3600project3.
lisp
similarly when I try and set the pathname, it…of the double quotes and make them single quotes,
lisp
is reading your backslashes as attempted escape characters and …
Re: Lisp: General Programming?
Programming
Software Development
13 Years Ago
by Rashakil Fol
Yes, Common
Lisp
is a general purpose programming language, and you can do pretty much anything with it (except things that really need to run without garbage collection).
Re: Lisp: General Programming?
Programming
Software Development
13 Years Ago
by TrustyTony
You could do worse than browsing [url]http://www.norvig.com/[/url]
Lisp
articles (and Python ones ;)) Yes he is [B][URL="http://www.norvig.com/bio.html"]that Norvig[/URL][/B].
Re: Lisp...the language, not the speech impediment
Programming
Computer Science
13 Years Ago
by Rashakil Fol
You could also figure out your problems by reading the Common
Lisp
hyperspec.
Lisp Programming!
Programming
Software Development
19 Years Ago
by Shon05
Is anyone familiar with
lisp
programming? If so can you please respond back. I have a program due and it deals with
lisp
type checking! I would really appreciate it. ;)
Re: Lisp Programming!
Programming
Software Development
19 Years Ago
by Rashakil Fol
[QUOTE=Shon05]Is anyone familiar with
lisp
programming? If so can you please respond back. I have a program due and it deals with
lisp
type checking! I would really appreciate it. ;)[/QUOTE] I am.
LISP:i changed the load function accidently...HELP
Programming
Computer Science
19 Years Ago
by fmawji
… clisp) you know the one that goes.. (load "filename.
lisp
") well...i was running a function that i'd… as one of the parameters accidently typed (load "filename.
lisp
") and now. whenever i wanna "really" use…
Re: Lisp Programming defparameter
Programming
Computer Science
18 Years Ago
by indienick
… names...especially in this situation: CAR is a function in
Lisp
, so I would name the variable *cars* instead. It's… thread is approximately 10 months old. [i]NOTE: When discussing
Lisp
, all functions are always typed in caps.[/i] [i]NOTE… almost always one of the first things covered in any
Lisp
book/reference.[/i]
Lisp load function in windows
Programming
Computer Science
18 Years Ago
by JaggyGT
…: (load "c:\users\documents\john\schoolwork\cs\3600\project3.
lisp
") But it says it can't find the file… c:usersdocumentsjohnschoolworkcs3600project3.
lisp
similarly when I try and set the pathname, it removes…
Re: Lisp Load Function
Programming
Computer Science
18 Years Ago
by indienick
When referring to file paths in Common
LISP
, it's best to either use the pathname directive:…- ...better yet, just use the arbitrary pathname tricks in Common
LISP
: [inlinecode] (load (make-pathname :device "c" :…a problem with the syntax of your code; proper Common
LISP
code for your little snippet [i]should[/i] read…
Re: Lisp question
Programming
Software Development
17 Years Ago
by indienick
…-two (+ number-one number-two))) [/code] Also, more tips for
Lisp
programming: -Remember that the REPL automatically changes all S-expressions… (read))) ...) [/code] Note the use of PARSE-INTEGER. Also, which
Lisp
implementation are you using? I haven't seen SETQ used…'re using Scheme, or a REALLY old implementation; pre-Common
Lisp
).[/i]
Re: Lisp question
Programming
Software Development
17 Years Ago
by dmmckelv
… little sneaky parenthesis can cause a lot of pain in
LISP
. You solved my problem. Thanks. I could not implement the… homework look much better as well. I am using Common-
Lisp
I am using International Allegro CL Free Express Edition 8… is just old-school. This is my first introduction to
LISP
.
Re: Lisp Load Function
Programming
Computer Science
16 Years Ago
by hexagon2008
[QUOTE=WD40;332403][COLOR=#555555]I am using common
lisp
for customizing CoCreate Cad software.[/COLOR] [COLOR=#555555]I am …][/QUOTE] Hi click on following link. read
lisp
load function. [url]http://www.
lisp
.org/HyperSpec/Body/fun_load.html[/url] From Hexagon…
LISP Programming using Allegro CL
Programming
Software Development
11 Years Ago
by ProximaC
I seriously need help with this
LISP
Programming. There are 8 questions but I've done the … list for which the predicate returns true. (There are actually
LISP
built-ins to do this called remove-if and remove…
Lisp Programming defparameter
Programming
Computer Science
19 Years Ago
by coolman2006
Does anyone know about
LISP
Programming I am trying to make this program where I …
Re: Lisp Programming defparameter
Programming
Computer Science
19 Years Ago
by coolman2006
Please man u gota give some sort of code so i can work on it i dont know nothing about
lisp
if (test-a-list 2) the two means put two cars in a list, but they must be sorted to the correct list, that what i have to do because i need to learn this staff i tried the internet and everything but i cant find nothing
Lisp i know its pythlon but please help
Programming
Software Development
19 Years Ago
by coolman2006
Does anyone know about
LISP
Programming I am trying to make this program where I …
Re: Lisp Programming defparameter
Programming
Computer Science
19 Years Ago
by Rashakil Fol
[QUOTE=coolman2006]i dont know nothing about
lisp
[/QUOTE] Then learn something about it.
Re: Lisp Programming defparameter
Programming
Computer Science
19 Years Ago
by Rashakil Fol
….com/acl.html[/url] Here is a pdf to On
Lisp
, which assumes you know a bit about the language already…
1
2
3
15
Next
Last
Search
Search
Forums
Forum Index
Hardware/Software
Recommended Topics
Programming
Recommended Topics
Digital Media
Recommended Topics
Community Center
Recommended Topics
Latest Content
Newest Topics
Latest Topics
Latest Posts
Latest Comments
Top Tags
Topics Feed
Social
Top Members
Meet People
Community Functions
DaniWeb Premium
Newsletter Archive
Markdown Syntax
Community Rules
Developer APIs
Connect API
Forum API Docs
Tools
SEO Backlink Checker
Legal
Terms of Service
Privacy Policy
FAQ
About Us
Advertise
Contact Us
© 2025 DaniWeb® LLC