Update README.md

This commit is contained in:
themixray 2022-01-18 18:14:00 +03:00 committed by GitHub
parent f798c9180f
commit ceaf3d455a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -10,3 +10,22 @@
Documentation Documentation
</a> </a>
</p> </p>
<h2 align="center">
Template
</h2>
```py
import pygwin
win = pygwin.create('Title',(500,500))
run = True
while run:
for event in pygwin.getEvents():
if event.type == pygwin.QUIT:
run = False
win.update()
pygwin.close()
```