mirror of
https://github.com/evilhero/mylar
synced 2025-01-03 13:34:33 +00:00
11 lines
119 B
Python
11 lines
119 B
Python
from js2py.base import *
|
|
|
|
@Js
|
|
def console():
|
|
pass
|
|
|
|
@Js
|
|
def log():
|
|
print(arguments[0])
|
|
|
|
console.put('log', log)
|