+add: option on F/R dialog: incremental search ON/OFF

This commit is contained in:
METANEOCORTEX\Kotti
2023-05-12 22:12:34 +02:00
parent 0285c82395
commit da07882fca
7 changed files with 212 additions and 145 deletions
@@ -0,0 +1,33 @@
# -*- coding: utf-8 -*-
# -----------------------------------------------------------------------------
"""
Simple 'Hello world!'
"""
# -----------------------------------------------------------------------------
MSG = "Hello world!"
def main():
""" main function """
print(f"{MSG}")
# -----------------------------------------------------------------------------
def pause():
import os
import sys
if sys.platform == 'win32':
os.system('pause')
else:
input('Press any key to continue...')
# -----------------------------------------------------------------------------
if __name__ == "__main__":
try:
main()
finally:
pause()
# =============================================================================