summaryrefslogtreecommitdiffstats
path: root/examples/full-screen/dummy-app.py
blob: b9e246b61946be864297c82f920d4b1dc7e92eb5 (plain)
1
2
3
4
5
6
7
8
9
#!/usr/bin/env python
"""
This is the most simple example possible.
"""

from prompt_toolkit import Application

app = Application(full_screen=False)
app.run()