A Scala 3 "Hello, world" Example | Video: Free Introduction to Scala 3 Course
Briefly

The way S3 works is that you annotate any method with @main to make it a "main method". Your application starts here, and it's called the "entry point" to your application.
// Hello2.scala @main def hello(name: String) = println("Hello, " + name)
Purpose of all this: Show some simple applications. Show how to run them with scala-cli.
Read at Alvinalexander
[
|
]