Fahad/CodeSamples/GenericClasses.scala
author Christian Urban <christian dot urban at kcl dot ac dot uk>
Wed, 24 Feb 2016 21:08:35 +0000
changeset 104 59bad592a009
parent 44 a751aa1ee4f7
permissions -rw-r--r--
updated theories and cleaned them up

package Main

class Stack[T] {
  var elems: List[T] = Nil
  def push(x: T) { elems = x :: elems }
  def top: T = elems.head
  def pop() { elems = elems.tail }
}

object GenericsTest extends App{
  val stack = new Stack[Int]
  stack.push(1)
  stack.push('a')
  println(stack.top)
  stack.pop()
  println(stack.top)
}