generated from seanpm2001/Git-Template_V8
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathPROJECT_LANG_1.sc
16 lines (16 loc) · 1.19 KB
/
PROJECT_LANG_1.sc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Start of script
// Project language file 1
// For: seanpm2001/Learn-Scala
// About:
// I chose Scala as the first project language file for this project (Seanpm2001/Learn-Scala) as this project is about learning the Scala programming language, and showing my knowledge for the language. Its project language file should represent what language is being showcased and studied here
import users // Not necessary, just getting used to the language
package users // Not necessary, just getting used to the language
object ProjectLanguageOne extends App {
println("Project language file 1\nFor: seanpm2001/Learn-Scala\nAbout:\nI chose Scala as the first project language file for this project (Seanpm2001/Learn-Scala) as this project is about learning the Scala programming language, and showing my knowledge for the language. Its project language file should represent what language is being showcased and studied here.")
}
return object(ProjectLanguageOne)
// Note: I am not very good at Scala, so this script may not work.
// File version: 1 (2022, Thursday, July 28th at 8:36 pm PST)
// File type: Scala 2.1 Source file (*.scala *.sc)
// Line count (including blank lines and compiler line): 17
// End of script