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

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