mung/builtins_code.py
cecilkorik dcaeb7145f refactored massive language file, separating into language_types and bytecode
tests for parser and virtualmachine now work!
Running test.moo is now able to successfully call built-in functions

--HG--
branch : mung
2015-09-23 14:38:03 -06:00

11 lines
167 B
Python
Executable file

class builtin_functions(object):
def __init__(self):
pass
@staticmethod
def serverlog(vm, args):
print "serverlog: %s" % (args,)
bi = builtin_functions()