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
Search found 7 matches
- Tue Dec 02, 2014 3:18 am
- Forum: Common Lisp
- Topic: How to program in own Language using LISP
- Replies: 2
- Views: 6567
- Wed Nov 26, 2014 10:20 am
- Forum: Common Lisp
- Topic: Problem in executing the code
- Replies: 5
- Views: 11551
Re: Problem in executing the code
Thank You for your suggestion. 'll go through it.
- Tue Nov 25, 2014 2:33 pm
- Forum: Common Lisp
- Topic: Problem in executing the code
- Replies: 5
- Views: 11551
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
- Tue Nov 25, 2014 4:29 am
- Forum: Common Lisp
- Topic: Problem in executing the code
- Replies: 5
- Views: 11551
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 ...
- Sun Nov 23, 2014 3:46 pm
- Forum: Common Lisp
- Topic: Evaluating Arithmetic Expression using MACRO in LISP
- Replies: 1
- Views: 6550
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 ()...
- Thu Nov 20, 2014 11:15 am
- Forum: Common Lisp
- Topic: Evalating Expressions
- Replies: 3
- Views: 8936
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.
- Tue Nov 18, 2014 4:31 am
- Forum: Common Lisp
- Topic: Evalating Expressions
- Replies: 3
- Views: 8936
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.
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.