bigbluebutton-Github/akka-bbb-apps/scala/Collections.sc

9 lines
204 B
Python
Raw Normal View History

2017-04-29 05:20:46 +08:00
import scala.collection.mutable
object Collections {
val messages = new mutable.Queue[String]()
messages += "foo"
messages += "bar"
messages += "baz"
messages.foreach(f => println(f))
}