#include "clipscpp.h"
int main()
{
CLIPS::CLIPSCPPEnv theEnv;
theEnv.Build("(defrule hello"
" =>"
" (printout t \"Hello World.\" crlf)"
" (printout t \"Wrapped Lib Example.\" crlf)"
" (printout t \"Hit return to end.\" crlf)"
" (readline))");
theEnv.Reset();
theEnv.Run(-1);
return 0;
}