Skip to content

Commit f1dc680

Browse files
authored
PROJECT_LANG_1.tcl [V1]
Version 1 of the first project language file for this project.
1 parent 1fbeaaa commit f1dc680

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

PROJECT_LANG_1.tcl

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# Start of script
2+
oo::class create plang1 {
3+
puts "Project language file 1"
4+
puts "For: SNU/2D/ProgrammingTools/IDE/Tcl"
5+
puts "About:"
6+
puts "I decided to make Tcl the main project language file for this project (SNU / 2D / Programming Tools / IDE / Tcl) as this is a Tcl IDE, and it needs its main language to be represented here."
7+
}
8+
return plang1()
9+
break
10+
11+
# Output:
12+
13+
# Project language file 1
14+
# For: SNU/2D/ProgrammingTools/IDE/Tcl
15+
# About:
16+
# I decided to make Tcl the main project language file for this project (SNU / 2D / Programming Tools / IDE / Tcl) as this is a Tcl IDE, and it needs its main language to be represented here.
17+
18+
# File info
19+
# File type: Tcl source file (*.tcl *.tbc)
20+
# File version: 1 (2022, Sunday, September 4th at 7:19 pm PST)
21+
# Line count (including blank lines and compiler line): 24
22+
23+
# End of script

0 commit comments

Comments
 (0)