Skip to content

Instantly share code, notes, and snippets.

@wernsey
wernsey / JProlog.java
Last active September 21, 2015 08:42
A Java port of Chris Meyers' Prolog interpreter
/*
Simple Java Prolog engine.
This is basically a Java port of Chris Meyers' Python Prolog interpreter [1].
This currently only contains the first part, but maybe I'll port the remainder at
a later stage.
I actually wanted a Datalog [5] engine, but ended up going with the Prolog engine
since Datalog is a Prolog subset.