Also close bug
[filters.git] / kraut.l
CommitLineData
027a0762
MG
1%e 2000
2%p 5000
3%n 1000
4%k 500
5%a 4000
6%o 2000
7BW [ ]
8EW [ .,;!?]
9
10%%
11ing printf("ingkt");
12" the " printf(" ze ");
13"The " printf("Ze ");
14" with " printf(" mitt ");
15"With " printf("Mitt ");
16wr printf("w-r-r");
17Wr printf("W-r-r");
18R printf("R-r-r");
19"Yes " printf("Jawohl ");
20" r" printf(" r-r-r");
21"Yes." printf("Jawohl.");
22"Yes!" printf("Jawohl!");
23"YES!" printf("JAWOHL!");
24" yes " printf(" ja ");
25" yes." printf(" ja.");
26" yes!" printf(" yes!");
27"No " printf("Nein ");
28"No!" printf("Nein!");
29"No?" printf("Nein?");
30" no " printf(" nein ");
31" no." printf(" nein.");
32" no!" printf(" nein!");
33" no?" printf(" nein?");
34[Mm]"r." printf("Herr");
35[Mm]"rs." printf("Frau");
36Miss printf("Fraulein");
37" of " printf(" uff ");
38"Of " printf("Uff ");
39my printf("mein");
40My printf("Mein");
41" and " printf(" undt ");
42"And " printf("Undt ");
43"One " printf("Ein ");
44" one" printf(" ein");
45"Is " printf("Ist ");
46" is " printf(" ist ");
47"ow " printf("ow ");
48"w " printf("w ");
49sh printf("sch");
50Sh printf("Sch");
51ch printf("ch");
52Ch printf("Ch");
53" c" printf(" k");
54" C" printf(" K");
55
56v printf("f");
57V printf("F");
58" w" printf(" v");
59W printf("V");
60th printf("d");
61Th printf("D");
62[Jj]ohn printf("Johann");
63[Ww]illiam printf("Wilhelm");
64[Bb]rad printf("Wilhelm");
65[Gg]ary printf("Gerhardt");
66[Jj]on printf("Hansel");
67
68[a-f]"!" {printf("%s Naturlich!",yytext);}
69[p-z]"!" {printf("%s Sieg Heil!",yytext);}
70. printf("%s", yytext);
71\n printf("\n");
72
73%%
74
75
This page took 0.012118 seconds and 4 git commands to generate.