Files
Learning-HTMX/src/main/scala/aggregatedexercises/Main.scala
efim 572b63c82d feat(root): attempt to create combined project
right now struggling with making page relative links,
so that images would get pulled from "subproj/public" path
2023-07-03 07:34:41 +00:00

9 lines
145 B
Scala

package aggregatedexercises
object Main {
def main(args: Array[String]): Unit = {
val a = 1
println(args.toList.mkString(", "))
}
}