Search found 7 matches

by vignezds
Tue Dec 02, 2014 3:18 am
Forum: Common Lisp
Topic: How to program in own Language using LISP
Replies: 2
Views: 6118

How to program in own Language using LISP

Dear friends, again with new doubt, I supposed to do a program in other language(i.e not in English). How Can be it Created? How do I give meaning to keywords
? expecting your help asap
by vignezds
Wed Nov 26, 2014 10:20 am
Forum: Common Lisp
Topic: Problem in executing the code
Replies: 5
Views: 10734

Re: Problem in executing the code

Thank You for your suggestion. 'll go through it.
by vignezds
Tue Nov 25, 2014 2:33 pm
Forum: Common Lisp
Topic: Problem in executing the code
Replies: 5
Views: 10734

Re: Problem in executing the code

Yes, as you said, I am very much new to this language, so kindly help me with some tutorials where I can find function example and corresponding macro
by vignezds
Tue Nov 25, 2014 4:29 am
Forum: Common Lisp
Topic: Problem in executing the code
Replies: 5
Views: 10734

Problem in executing the code

Hello Friends, Now I got some idea about Functions but I am not able to understand about macro's. For example here is a code: (defmacro reverse-list ( list ) `(if (atom ,@list) ,@list (reverse (mapcar #'reverse-list ,@list)))) `(reverse-list (list(1 2 3 4 5))) I am not getting answer for this, what ...
by vignezds
Sun Nov 23, 2014 3:46 pm
Forum: Common Lisp
Topic: Evaluating Arithmetic Expression using MACRO in LISP
Replies: 1
Views: 6245

Evaluating Arithmetic Expression using MACRO in LISP

Friends, I have code that does arithmetic evaluation of expression. I tried to convert as Macro but I failed each time, can anyone help me with this. Here is my code: (defun tokenize-stream (stream) (labels ((whitespace-p (char) (find char #(#\space #\newline #\return #\tab))) (consume-whitespace ()...
by vignezds
Thu Nov 20, 2014 11:15 am
Forum: Common Lisp
Topic: Evalating Expressions
Replies: 3
Views: 8334

Re: Evalating Expressions

Thank you so much, I got complete idea over it.
Goheeca wrote:And on Rosetta Code, you have an implementation in CL of the arithmetic expression evaluation. Consider it as an inspiration only.
by vignezds
Tue Nov 18, 2014 4:31 am
Forum: Common Lisp
Topic: Evalating Expressions
Replies: 3
Views: 8334

Evalating Expressions

Hello Everyone,
I am Very much new to LISP, I don't have basic knowledge in LISP but I supposed to do project in LISP. I need to evaluate given expression(Just addition, Subtraction, Multiplication, Division), kindly help me to do this. I am using LISPWORKS as tool.