generated from seanpm2001/Git-Template_V8
-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathPROJECT_LANG_1.kts
19 lines (19 loc) · 919 Bytes
/
PROJECT_LANG_1.kts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Start of script
// I decided to make Kotlin the 1st project language file for this project (BlazeOS/App_Store) as the App Store for BlazeOS is written mostly in Kotlin, and is the first language used on the sub-project. It is being represented here in its own repository.
fun main() {
val scope = "Project Language File 1"
println("I decided to make Kotlin the 1st project language file for this project (BlazeOS/App_Store) as the App Store for BlazeOS is written mostly in Kotlin, and is the first language used on the sub-project. It is being represented here in its own repository.. , $scope")
}
fun main(args: Array<String>) {
for (arg in args) {
println(arg)
}
}
return main();
break;
/* File info
* File version: 1 (2022, Sunday, January 9th at 5:15 pm)
* File type: Kotlin Source file (*.kt, *.kts, *.ktm)
* Line count (including blank lines and compiler line): 20
*/
// End of script