Quote:
Originally Posted by bigearsbilly
if you have an init file for clisp
what are you trying to do?
(It's good to see someone using lisp though.)
[/I]
|
First of all my excuse for the late answer...
I have a program with an output like this:
(root
(class living_thing
(spec human
(prop has_legs))
(spec bird (prop has_wings))))
The program spits that kind of code out whenever it has computed its own input.
Now I have three problems:
1. How do I feed my program time after time (solved by FIFO)
2. How do i lookup the data:
here the problems are:
1. I dont know the structures depht (which is variable) 2. I dont know how to retrieve the information once stored because of 1.
3. How to store it in a DB (solved conceptually by my own)
Any ideas?