Initial revision
[filters.git] / fin.l
CommitLineData
7e3afbba 1
2T [" .!?,"]*
3%%
4
5look printf("watch");
6watch printf("look");
7hear printf("listen");
8listen printf("hear");
9good printf("well");
10well printf("good");
11say printf("speaks");
12said printf("speaked");
13being printf("be");
14ck printf("kk");
15nn printf("n");
16mm printf("m");
17tt printf("t");
18ss printf("s");
19dd printf("d");
20" had " printf(" have ");
21" than " printf(" to ");
22" was " printf(" were ");
23" can " printf(" be able to ");
24" do " printf(" doing ");
25" does " printf(" doings ");
26" see " printf(" be seeing ");
27" be " printf(" being ");
28" am " printf(" do be ");
29" as " printf(" so ");
30" so " printf(" as ");
31" is " printf(" does be ");
32" my " printf(" the of me ");
33"My " printf("The of me ");
34" his " printf(" the of him ");
35"His " printf("The of him ");
36[Yy]our printf("the of you");
37" a " printf(" ");
38" the " printf(" ");
39"A " printf("One ");
40"ts " printf("t's ");
41"t's " printf("ts ");
42[Tt]hat printf("this");
43[Tt]his printf("that");
44into printf("in");
45" in " printf(" into ");
46onto printf("on");
47" on " printf(" onto ");
48never printf("not once");
49[Oo]nce printf("one time");
50[Tt]wice printf("two times");
51about printf("by");
52[Ww]hy printf("how");
53" by " printf(" from ");
54" to " printf(" for ");
55" for " printf(" to ");
56"ing " printf("ed ");
57%%
58
59main()
60{
61 srand(getpid());
62 yylex();
63}
This page took 0.013202 seconds and 4 git commands to generate.