summaryrefslogtreecommitdiff
path: root/gf-book/examples/chapter2/Copy.gf
blob: 58d74861c940b624a12707717e57a56481d48a93 (plain)
1
2
3
4
5
6
7
concrete Copy of CopyAbs = {
  lincat S, AB = Str ;
  lin s x = x ++ x ;
      end = [] ;
      a x = "a" ++ x ;
      b x = "b" ++ x ;
}