From 684ccfa19e1e2760c4481c7ed17b7077b1e991d5 Mon Sep 17 00:00:00 2001 From: fogus Date: Wed, 23 Jul 2008 21:10:23 -0400 Subject: [PATCH] Clips language example using fact base --- clips.clips | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 clips.clips diff --git a/clips.clips b/clips.clips new file mode 100644 index 00000000..637a6131 --- /dev/null +++ b/clips.clips @@ -0,0 +1,8 @@ +(defrule hw + (f ?x) +=> + (printout t ?x crlf)) + +(assert (f "Hello World")) + +(run)