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