progs/matcher/re1.sc
changeset 940 1c1fbf45a03c
parent 928 717ecab7b87a
child 960 791f4d9f53e1
--- a/progs/matcher/re1.sc	Thu Oct 05 14:36:54 2023 +0100
+++ b/progs/matcher/re1.sc	Fri Oct 13 15:07:37 2023 +0100
@@ -56,7 +56,7 @@
 
 // some examples from the homework
 
-val r = SEQ(CHAR('b'), CHAR('c'))
+val r = SEQ(CHAR('a'), CHAR('c'))
 matcher(r, "ac")
 
 val r1 = STAR(ALT(SEQ(CHAR('a'), CHAR('b')), CHAR('b')))