Perhaps I should have post this as my first message to the group, but I will add it anyway for completeness. Or in case someone wants to try Scala out and at least you can grap this template to start pasting code to trying it out for other examples.

object Hello {
  def main(args: Array[String]): Unit = {
println("Hello world.")
}
}

Save above into Hello.scala, then compile and run your program like these:
powerbookg4:tmp zemian$ scalac Hello.scala
powerbookg4:tmp zemian$ scala Hello
Hello world.

Note that Scala main entry program is a "object" instead of "class". "object" in Scala is like a class that define a type, but it force it to be a singleton(only one instance), so it almost like "static" in Java. Your main entry in command line must be an object with the main method defined.


You may turn your source file into a script by enter a expression that invoke the main method on the end of the file, and then run it through "scala" instead of compiling it. For example:

object Hello {
  def main(args: Array[String]): Unit = {
println("Hello world.")
}
}
Hello.main(args)

Note that variable "args" is predefined when you run it as script. To run it, just invoke like this:
powerbookg4:tmp zemian$ scala Hello.scala
Hello world.

Note the difference. 1 no compile. 2 you give scala the script file name, not the type name!


Happy programming!

Views: 36

Happy 10th year, JCertif!

Notes

Welcome to Codetown!

Codetown is a social network. It's got blogs, forums, groups, personal pages and more! You might think of Codetown as a funky camper van with lots of compartments for your stuff and a great multimedia system, too! Best of all, Codetown has room for all of your friends.

When you create a profile for yourself you get a personal page automatically. That's where you can be creative and do your own thing. People who want to get to know you will click on your name or picture and…
Continue

Created by Michael Levin Dec 18, 2008 at 6:56pm. Last updated by Michael Levin May 4, 2018.

Looking for Jobs or Staff?

Check out the Codetown Jobs group.

 

Enjoy the site? Support Codetown with your donation.



InfoQ Reading List

Amazon S3 Vectors Reaches GA, Introducing "Storage-First" Architecture for RAG

AWS has announced the general availability of Amazon S3 Vectors, increasing per-index capacity forty-fold to 2 billion vectors. By natively integrating vector search into the S3 storage engine, the service introduces a "Storage-First" architecture that decouples compute from storage, reducing total cost of ownership by up to 90% for large-scale RAG workloads.

By Steef-Jan Wiggers

Presentation: From Confusion to Clarity: Advanced Observability Strategies for Media Workflows at Netflix

Naveen Mareddy and Sujana Sooreddy discuss the evolution of Netflix’s media processing observability, moving from monolithic tracing to a high-cardinality analytics platform. They explain how to handle "trace explosion" using stream processing and a "request-first" tree visualization, and share how to transform raw spans into actionable business intelligence.

By Sujana Sooreddy, Naveen Mareddy

Article: The Architect’s Dilemma: Choose a Proven Path or Pave Your Own Way?

Software platforms and frameworks act like paved roads: they accelerate MVP/MVA delivery but impose decisions teams may not accept. If the paved roads don't reach your destination, then you may have to take an exit ramp and build your own solution. Experiments are necessary to determine which path meets your specific needs.

By Pierre Pureur, Kurt Bittner

Things Software Developers Think They Don’t Need to Care about, But Can Impact Their Job

Holly Cummins gave a keynote at Goto Copenhagen where she urged developers to care about overlooked issues that shape their work. She warned of unintended consequences of design decisions, promoted systems thinking and statistical literacy, stressed mastering concurrency as hardware evolves beyond Moore’s Law, and mentioned the impact of AI on the job market.

By Ben Linders

Bun Introduces Built-in Database Clients and Zero-Config Frontend Development

Bun 1.3 revolutionizes full-stack JavaScript development with unified database APIs and zero-config frontend setup. Experience enhanced performance with built-in Redis support and optimized bundling. With a focus on community feedback, Bun is poised to outpace Node.js and Deno, delivering faster, efficient, all-in-one capabilities for modern developers.

By Daniel Curtis

© 2026   Created by Michael Levin.   Powered by

Badges  |  Report an Issue  |  Terms of Service