File: Tokens.hs

package info (click to toggle)
whitespace 0.3-2
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k, lenny
  • size: 140 kB
  • ctags: 15
  • sloc: haskell: 215; makefile: 68; lisp: 54
file content (8 lines) | stat: -rw-r--r-- 138 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
module Tokens where

data Token = A | B | C 
  deriving Eq
instance Show Token where
    show A = " "
    show B = "\t"
    show C = "\n"