Search found 8 matches
- Tue Aug 06, 2013 6:20 am
- Forum: The Lounge
- Topic: A New prototype based Scheme/Lisp-Like Language
- Replies: 0
- Views: 9934
A New prototype based Scheme/Lisp-Like Language
Hi everyone. I need help from you for a good solution. I'm loosing my mind to realize a prototype-based Scheme/Lisp-Like interpreter with the philosophy that everything is an object. I like the solutions of T and the Yasos extension for the ability of make opaque objects. The interpreter must be rea...
- Tue Nov 20, 2012 1:15 am
- Forum: Common Lisp
- Topic: Apply a method
- Replies: 4
- Views: 13605
Apply a method
Hi. Can someone tell me if a method can be used outside of a generic function? For example something like this:
Thank you very much.
Tommy.
Code: Select all
(defmethod xyz ((a integer)) a)
(setq x (find-method ...))
(apply x 4)
Tommy.
- Tue Mar 13, 2012 1:30 am
- Forum: The Lounge
- Topic: Interpreter Library organization
- Replies: 1
- Views: 7452
Interpreter Library organization
Hello guys. I've a problem with my interpreter. I'm trying to organize functions in libraries with some logic ... but I haven't found this logic yet. The intention is to provide group of functions in libraries....for example....everything concern string manipulation in a "string.dll", what...
- Fri Aug 05, 2011 1:02 am
- Forum: The Lounge
- Topic: get/set dilemma
- Replies: 2
- Views: 8632
Re: get/set dilemma
Mmmm packages are more or less the same of CL. Have a name, nicknames, a use list. But symbols are all visible to the external world. I've omitted a thing...symbols and packages are made at read time. This mean that if I read from command line something like "MATH:ACOS" without loading the...
- Thu Aug 04, 2011 3:28 am
- Forum: The Lounge
- Topic: get/set dilemma
- Replies: 2
- Views: 8632
get/set dilemma
Hello boys/girls (there's any girl here?). I've a question. I've read here http://axisofeval.blogspot.com/search?updated-max=2010-09-04T15%3A42%3A00%2B02%3A00&max-results=23 a question about the today existence of CAR and CDR functions on new lisp dialects. This have bring to me a consideration ...
- Tue Jul 05, 2011 12:48 am
- Forum: The Lounge
- Topic: Dotted List
- Replies: 5
- Views: 19324
Re: Dotted List
Yesssssss!!! Is what I mean. Good. Anyway, I don't remove this sintax.
- Mon Jul 04, 2011 12:29 pm
- Forum: The Lounge
- Topic: Dotted List
- Replies: 5
- Views: 19324
Re: Dotted List
Oh, It's not a problem of studying...Really, the interpreter have an evolution of more than 10 years but I've never released it. Actually it use conses in the common way, dotted lists and so on. It's a little bit difficult to me to explain what I mean, since english is not my mother language. I try....
- Mon Jul 04, 2011 8:22 am
- Forum: The Lounge
- Topic: Dotted List
- Replies: 5
- Views: 19324
Dotted List
Hello to every one. I've a question for everyone : why dotted list? why they exists? Can anyone give me a piece of code using a dotted list that cannot be translated without the dot? I'm currently developing a new Lisp-dialect (actually using dotted lists) and the existance of an atom on the CDR mak...