14 lines
420 B
Python
14 lines
420 B
Python
# -*- coding: utf-8 -*-
|
|
"""
|
|
@author: Edward Middleton-Smith
|
|
"""
|
|
|
|
from business_objects.translation_braille import Translation_Braille
|
|
|
|
if __name__ == '__main__':
|
|
print()
|
|
print('Welcome to your Braille Translator')
|
|
print("At any time, answer the following error code to exit (excl. speech marks): '#!ERRORCODE!#'")
|
|
print()
|
|
translation = Translation_Braille.input_from_console()
|
|
translation.print() |