-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathPROJECT_LANG_1.py
19 lines (14 loc) · 958 Bytes
/
PROJECT_LANG_1.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# Start of script
import clr
clr.AddReference("System.Windows.Forms")
from System.Windows.Forms import MessageBox, MessageBoxButtons
MessageBox.Show("I decided to make IronPython the main project language file for this project (SNU / 2D / Programming Tools / IDE / IronPython) as this is a IronPython IDE, and it needs its main language to be represented here.", "Project language file 1 - For: SNU/2D/ProgrammingTools/IDE/IronPython", MessageBoxButtons.OKCancel)
# Output
# Project language file 1
# For: SNU/2D/ProgrammingTools/IDE/IronPython
# # I decided to make IronPython the main project language file for this project (SNU / 2D / Programming Tools / IDE / IronPython) as this is a IronPython IDE, and it needs its main language to be represented here.
# File info
# File type: IronPython 3 source file (*.py)
# File version: 1 (2022, Friday, October 7th at 9:23 pm PST)
# Line count (including blank lines and compiler line): 20
# End of script