Multiple changes:

- Move to a Python process for the LanguageLink client [fixes #1, presumably]
- Finish a first rough draft of the booklet [fixes #4]
This commit is contained in:
2022-06-11 18:43:17 +02:00
parent acded68da5
commit 6369d15e93
39 changed files with 3977 additions and 56 deletions

13
carp/src/bridge/carp.py Normal file
View File

@@ -0,0 +1,13 @@
import subprocess
class CarpProc:
def __init__(self):
self.proc = subprocess.Popen(['carp'])
def evaluate(self, statements):
self.proc.stdin.send(statements)
def start_carp_proc():
return CarpProc()