├── LICENSE ├── Main.hs ├── Prolog.hs ├── README ├── Setup.hs ├── aprolog.cabal ├── demo.prolog ├── note-ja.txt ├── note.html └── test.hs /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/propella/prolog/HEAD/LICENSE -------------------------------------------------------------------------------- /Main.hs: -------------------------------------------------------------------------------- 1 | import Prolog 2 | 3 | main = interact start 4 | -------------------------------------------------------------------------------- /Prolog.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/propella/prolog/HEAD/Prolog.hs -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/propella/prolog/HEAD/README -------------------------------------------------------------------------------- /Setup.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/propella/prolog/HEAD/Setup.hs -------------------------------------------------------------------------------- /aprolog.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/propella/prolog/HEAD/aprolog.cabal -------------------------------------------------------------------------------- /demo.prolog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/propella/prolog/HEAD/demo.prolog -------------------------------------------------------------------------------- /note-ja.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/propella/prolog/HEAD/note-ja.txt -------------------------------------------------------------------------------- /note.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/propella/prolog/HEAD/note.html -------------------------------------------------------------------------------- /test.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/propella/prolog/HEAD/test.hs --------------------------------------------------------------------------------