7 lines
92 B
Python
7 lines
92 B
Python
# check if async/await keywords are supported
|
|
async def foo():
|
|
await 1
|
|
|
|
|
|
print("async")
|