Contact: aviboots(AT)netvision.net.il
39,844 questions
51,765 answers
573 users
import scala.collection.mutable._ object O { def main(args: Array[String]): Unit = { val q = Queue(7, 8, 0, 1, 4) var firstElement = q.front printf("%d\n", firstElement) print(q.front) } } /* run: 7 7 */