init: scala-cli project with some dependencies
This commit is contained in:
@@ -1,5 +1,12 @@
|
||||
//> using dep com.lihaoyi::pprint:0.8.1
|
||||
|
||||
object Hello {
|
||||
def main(args: Array[String]): Unit = {
|
||||
println(s"hello, i guess '${OtherObject.yoyo}'!!!")
|
||||
case class Thingy(a: Long, b: List[String])
|
||||
val th = Thingy(1234L, List("hello", "worlds"))
|
||||
pprint.pprintln(s"hello, i guess '${OtherObject.yoyo}'!!!")
|
||||
pprint.pprintln(th)
|
||||
println(th)
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user