Files
wasmtime/crates/misc/py/examples/import/env.py
Dan Gohman 22641de629 Initial reorg.
This is largely the same as #305, but updated for the current tree.
2019-11-08 06:35:40 -08:00

11 lines
235 B
Python

def callback(msg_p: 'i32', msg_len: 'i32') -> 'i32':
print('callback:', msg_p, msg_len)
# global memory
# mv = memoryview(memory)
# msg = bytes(mv[msg_p:(msg_p + msg_len)]).decode('utf-8')
# print(msg)
return 42