Merge branch 'master' of git://github.com/fogus/hello-world

This commit is contained in:
Clive Crous
2008-07-24 10:09:04 +02:00
2 changed files with 9 additions and 0 deletions

1
broccoli.brocc Normal file
View File

@@ -0,0 +1 @@
(out "Hello World" crlf)

8
clips.clips Normal file
View File

@@ -0,0 +1,8 @@
(defrule hw
(f ?x)
=>
(printout t ?x crlf))
(assert (f "Hello World"))
(run)