phasm/examples/buffer.py
Johan B.W. de Vries 4881cb6d4b Moved ___access_bytes_index___ to the right place
Also, added length test to buffer example
2022-08-09 20:34:03 +02:00

8 lines
132 B
Python

@exported
def index(inp: bytes, idx: i32) -> i32:
return inp[idx]
@exported
def length(inp: bytes) -> i32:
return len(inp)