├── .gitignore ├── LICENSE ├── README.md ├── Setup.hs ├── simple-prolog.cabal └── src ├── Main.hs ├── Prolog ├── Interpreter.hs └── Parse.hs ├── demo1.pl └── demo2.pl /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TikhonJelvis/Simple-Prolog/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TikhonJelvis/Simple-Prolog/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TikhonJelvis/Simple-Prolog/HEAD/README.md -------------------------------------------------------------------------------- /Setup.hs: -------------------------------------------------------------------------------- 1 | import Distribution.Simple 2 | main = defaultMain 3 | -------------------------------------------------------------------------------- /simple-prolog.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TikhonJelvis/Simple-Prolog/HEAD/simple-prolog.cabal -------------------------------------------------------------------------------- /src/Main.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TikhonJelvis/Simple-Prolog/HEAD/src/Main.hs -------------------------------------------------------------------------------- /src/Prolog/Interpreter.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TikhonJelvis/Simple-Prolog/HEAD/src/Prolog/Interpreter.hs -------------------------------------------------------------------------------- /src/Prolog/Parse.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TikhonJelvis/Simple-Prolog/HEAD/src/Prolog/Parse.hs -------------------------------------------------------------------------------- /src/demo1.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TikhonJelvis/Simple-Prolog/HEAD/src/demo1.pl -------------------------------------------------------------------------------- /src/demo2.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TikhonJelvis/Simple-Prolog/HEAD/src/demo2.pl --------------------------------------------------------------------------------