-
Notifications
You must be signed in to change notification settings - Fork 6
/
mqi.doc
49 lines (34 loc) · 1.04 KB
/
mqi.doc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
\documentclass[11pt]{article}
\usepackage{times}
\usepackage{pl}
\usepackage{html}
\sloppy
\makeindex
\onefile
\htmloutput{.} % Output directory
\htmlmainfile{mqi} % Main document file
\bodycolor{white} % Page colour
\begin{document}
\title{mqi -- Python and Other Programming Languge Integration for SWI Prolog}
\author{Eric Zinda \\
E-mail: \email{[email protected]}}
\maketitle
\begin{abstract}
This package provides the library \file{mqi.pl} that enables embedding
SWI Prolog into just about any programming language (Python, Go, C\#,
etc) in a straightforward way. It is designed for scenarios that need to
use SWI Prolog as a local implementation detail of another language.
Think of it as running SWI Prolog ``like a library''. It can support any
programming language that can launch processes, read their STDOUT pipe,
and send and receive JSON over TCP/IP.
A Python 3.x library is provided.
\end{abstract}
\pagebreak
\tableofcontents
\vfill
\vfill
\newpage
\input{mqioverview.tex}
\input{mqipl.tex}
\printindex
\end{document}