init: project attempting to use scala-cli

This commit is contained in:
efim
2023-06-25 13:02:47 +00:00
parent 2727bbc4e6
commit 43ed6c456d
9 changed files with 19 additions and 9 deletions

View File

View File

@@ -0,0 +1,5 @@
object Hello {
def main(args: Array[String]): Unit = {
println(s"hello, i guess '${OtherObject.yoyo}'!!!")
}
}

View File

@@ -0,0 +1,3 @@
object OtherObject {
val yoyo = "some message"
}