-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathPROJECT_LANG_1.ktm
23 lines (22 loc) · 954 Bytes
/
PROJECT_LANG_1.ktm
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// Start of script
// Project language file 1
// For: SNU/2D/ProgrammingTools/IDE/Kotlin
// About:
// 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.
fun main() {
val scope = "Project Language File 1\nFor: SNU/2D/ProgrammingTools/IDE/Kotlin\nAbout:\n\n"
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")
}
fun main(args: Array<String>) {
for (arg in args) {
println(arg)
}
}
return main();
break;
/* File info
* File version: 1 (2022, Wednesday, October 5th at 3:30 pm PST)
* File type: Kotlin Source file (*.kt, *.kts, *.ktm)
* Line count (including blank lines and compiler line): 24
*/
// End of script