mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
9 lines
308 B
Plaintext
9 lines
308 B
Plaintext
|
start <- abcd+
|
||
|
|
||
|
abcd <- 'a' { printf("A %d\n", yypos); } bc { printf("ABC %d\n", yypos); }
|
||
|
/ 'b' { printf("B %d\n", yypos); } cd { printf("BCD %d\n", yypos); }
|
||
|
|
||
|
bc <- 'b' { printf("B %d\n", yypos); } 'c' { printf("C %d\n", yypos); }
|
||
|
|
||
|
cd <- 'c' { printf("C %d\n", yypos); } 'd' { printf("D %d\n", yypos); }
|