right now struggling with making page relative links, so that images would get pulled from "subproj/public" path
9 lines
145 B
Scala
9 lines
145 B
Scala
package aggregatedexercises
|
|
|
|
object Main {
|
|
def main(args: Array[String]): Unit = {
|
|
val a = 1
|
|
println(args.toList.mkString(", "))
|
|
}
|
|
}
|