This section is a work in progress.
Examples:
You should always use ic.print
instead of print
.
from kybra import ic, query
# prints a message through the local replica's output
@query
def print(message: str) -> bool:
ic.print(message)
return True