generated from seanpm2001/Git-Template_V8
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathPROJECT_LANG_4.py
25 lines (25 loc) · 1.42 KB
/
PROJECT_LANG_4.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#!/usr/bin/env python
# Start of script
# Project language file 4
# For: Seanpm2001/JScribe
# About
# I decided to make the fourth project language file for this project (JScribe) to be Python, as Python is a good application level language to use. It is going to be used alongside C in the application layer, and alongside Objective-J and Inform 7 in the scope of the program. C will be used for more complicated tasks, while Python will be used for simpler tasks.
''' '''
class projectLanguageFileFour():
def plang1():
print("Project Language File 4\n")
print("For: Seanpm2001/JScribe")
print("About:")
print("I decided to make the fourth project language file for this project (JScribe) to be Python, as Python is a good application level language to use. It is going to be used alongside C in the application layer, and alongside Objective-J and Inform 7 in the scope of the program. C will be used for more complicated tasks, while Python will be used for simpler tasks.")
break
return plang1()
noMore = input("Press [ENTER] key to quit")
print("The program should now be closed. If the program is still running, try closing the window with the close button. If this doen't work, end the task/process with a task/process manager")
break
return 0
""" """
# File info
# File version: 1 (2022, Monday, May 9th at 4:26 pm PST)
# File type: Python 3 source file (*.py)
# Line count (including blank lines and compiler line): 26
# End of script