8 lines
164 B
Python
8 lines
164 B
Python
@exported
|
|
def sum() -> i32: # TODO: Should be [i32] -> i32
|
|
return 0 # TODO: Implement me
|
|
|
|
@exported
|
|
def index(inp: bytes, idx: i32) -> i32:
|
|
return inp[idx]
|