Skip to content

Commit ca3e38c

Browse files
authored
PROJECT_LANG_1.kts [V1]
Version 1 of the first project language file for this project.
1 parent d75ad2f commit ca3e38c

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

PROJECT_LANG_1.kts

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
// Start of script
2+
3+
// Project language file 1
4+
// For: SNU/2D/ProgrammingTools/IDE/Kotlin
5+
// About:
6+
// I decided to make Kotlin the main project language file for this project (SNU / 2D / Programming Tools / IDE / Kotlin) as this is a Kotlin IDE, and it needs its main language to be represented here.
7+
fun main() {
8+
val scope = "Project Language File 1\nFor: SNU/2D/ProgrammingTools/IDE/Kotlin\nAbout:\n\n"
9+
println("I decided to make Kotlin the main project language file for this project (SNU / 2D / Programming Tools / IDE / Kotlin) as this is a Kotlin IDE, and it needs its main language to be represented here." \n, $scope")
10+
}
11+
fun main(args: Array<String>) {
12+
for (arg in args) {
13+
println(arg)
14+
}
15+
}
16+
return main();
17+
break;
18+
/* File info
19+
* File version: 1 (2022, Wednesday, October 5th at 3:30 pm PST)
20+
* File type: Kotlin Source file (*.kt, *.kts, *.ktm)
21+
* Line count (including blank lines and compiler line): 24
22+
*/
23+
// End of script

0 commit comments

Comments
 (0)