app51.scala
author Christian Urban <christian dot urban at kcl dot ac dot uk>
Tue, 11 Dec 2012 11:07:49 +0000
changeset 89 24adcc265f2e
parent 7 73cf4406b773
permissions -rw-r--r--
typo

abstract class Rexp

case object NULL extends Rexp
case object EMPTY extends Rexp
case class CHAR(c: Char) extends Rexp
case class ALT(r1: Rexp, r2: Rexp) extends Rexp
case class SEQ(r1: Rexp, r2: Rexp) extends Rexp
case class STAR(r: Rexp) extends Rexp