aboutsummaryrefslogtreecommitdiff
path: root/launcher.py
diff options
context:
space:
mode:
Diffstat (limited to 'launcher.py')
-rw-r--r--launcher.py19
1 files changed, 0 insertions, 19 deletions
diff --git a/launcher.py b/launcher.py
deleted file mode 100644
index 50aaedc..0000000
--- a/launcher.py
+++ /dev/null
@@ -1,19 +0,0 @@
-import dialoguer
-
-src_fil_r = dialoguer.Dialogue('source_file.r')
-print('active:', src_fil_r.active)
-src_fil_r.open()
-print('active:', src_fil_r.active)
-
-msg_1 = src_fil_r.import_variable('msg_1')
-print(msg_1)
-
-msg_2 = src_fil_r.import_variable('msg_2')
-print(msg_2)
-
-print('active:', src_fil_r.active)
-src_fil_r.close()
-print('active:', src_fil_r.active)
-
-print("end launcher")
-