mirror of
https://github.com/sbt/sbt.git
synced 2026-09-05 01:03:36 +02:00
10 lines
190 B
Scala
10 lines
190 B
Scala
package example
|
|
|
|
class Hello
|
|
|
|
object Hello:
|
|
def main(args: Array[String]): Unit =
|
|
if args.toList == List("boom") then sys.error("boom")
|
|
else println(s"${args.mkString}")
|
|
end Hello
|