scala/ScalaBook/chapter-06/hello4.scala

import scala.swing._

object hello extends SimpleGUIApplication {
  def top:Frame = {
    val x = new MainFrame 
    x.title_=("Greetings")
    x.preferredSize_=(200,100)
    return x
  }
}