xref
: /
buildroot
/
support
/
testing
/
tests
/
package
/
sample_python_uvloop.py
Home
Annotate
Line#
Scopes#
Navigate#
Raw
Download
current directory
1
import
uvloop
2
3
async
def
main
():
4
print
(
"Hello world!"
)
5
6
uvloop
.
run
(
main
())
7