Files
2026-02-24 05:53:37 +00:00

8 lines
104 B
Python

async def f() -> bool:
return True
async def main():
if await f() or f():
print("hi")