fork download
  1. import asyncio;
  2.  
  3. def bbb():
  4. return '戻り値'
  5.  
  6. async def aaa():
  7. xxx = bbb()
  8. return xxx
  9.  
  10. aaa()
Success #stdin #stdout #stderr 0.05s 56624KB
stdin
Standard input is empty
stdout
Standard output is empty
stderr
./prog:10: RuntimeWarning: coroutine 'aaa' was never awaited