mirror of
https://github.com/data61/MP-SPDZ.git
synced 2026-01-11 06:27:56 -05:00
11 lines
299 B
Python
11 lines
299 B
Python
from Compiler import types, instructions
|
|
|
|
class Program(object):
|
|
def __init__(self, progname):
|
|
types.program = self
|
|
instructions.program = self
|
|
self.curr_tape = None
|
|
exec(compile(open(progname).read(), progname, 'exec'))
|
|
def malloc(self, *args):
|
|
pass
|