summaryrefslogtreecommitdiffstats
path: root/examples/full-screen/dummy-app.py
diff options
context:
space:
mode:
Diffstat (limited to 'examples/full-screen/dummy-app.py')
-rwxr-xr-xexamples/full-screen/dummy-app.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/examples/full-screen/dummy-app.py b/examples/full-screen/dummy-app.py
new file mode 100755
index 0000000..7ea7506
--- /dev/null
+++ b/examples/full-screen/dummy-app.py
@@ -0,0 +1,8 @@
+#!/usr/bin/env python
+"""
+This is the most simple example possible.
+"""
+from prompt_toolkit import Application
+
+app = Application(full_screen=False)
+app.run()