1
0
Fork 0
mirror of https://github.com/evilhero/mylar synced 2025-01-03 13:34:33 +00:00
mylar/lib/js2py/host/console.py
2016-09-07 00:04:42 -04:00

11 lines
119 B
Python

from js2py.base import *
@Js
def console():
pass
@Js
def log():
print(arguments[0])
console.put('log', log)