Difference between revisions of "Object Oriented Programming"

esse quam videri
Jump to: navigation, search
 
Line 2: Line 2:
  
 
<p>poop test</p>
 
<p>poop test</p>
 +
 +
<code>
 +
<java/>
 +
/*
 +
* Algernon - a rule-based inference engine in Java.
 +
* http://algernon-j.sourceforge.net/
 +
*
 +
* This example shows how to open a Protege knowledge base
 +
* in Java and use Algernon to query the KB.
 +
*
 +
* To run it, be sure to change the path in NEWSPAPER_PROJECT
 +
* to match the correct project on your system.
 +
*
 +
* Micheal Hewett
 +
* 05 May 2004
 +
* hewett@cs.stanford.edu
 +
*/
 +
 +
package org.algernon.test;
 +
 +
import java.util.*;
 +
</code>

Revision as of 05:30, 6 January 2006

POOP

poop test

<java/> /*

* Algernon - a rule-based inference engine in Java.
* http://algernon-j.sourceforge.net/
*
* This example shows how to open a Protege knowledge base
* in Java and use Algernon to query the KB.
*
* To run it, be sure to change the path in NEWSPAPER_PROJECT
* to match the correct project on your system.
*
* Micheal Hewett
* 05 May 2004
* hewett@cs.stanford.edu
*/

package org.algernon.test;

import java.util.*;