Files
smnp-py/smnp/library/loader.py
2019-07-13 15:06:53 +02:00

10 lines
280 B
Python

from pkg_resources import resource_string
from smnp.program.interpreter import Interpreter
def loadStandardLibrary():
mainSource = resource_string('smnp.library.code', 'main.mus').decode("utf-8")
env = Interpreter.interpretString(mainSource, "<stdlib>")
return env