代码搜索:ATG

找到约 213 项符合「ATG」的源代码

代码结果 213
www.eeworm.com/read/371236/9560378

atg calc.atg

$C /* Generate Main Module */ COMPILER Calc #define upcase(c) ((c >= 'a' && c
www.eeworm.com/read/371236/9560386

atg c.atg

COMPILER C /* An attempt to describe a subset of C */ CHARACTERS letter = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz" . digit = "0123456789" . hexdigit = digit + "ABCDEF
www.eeworm.com/read/371236/9560395

atg expr.atg

$C /* Generate Main Module */ COMPILER Expr /* This is a simple expression calculator */ /*----------------- Scanner Specifications ----------------------*/ CHARACTERS letter = "ABCDEFG
www.eeworm.com/read/371236/9560396

atg adacs.atg

COMPILER AdaCS /* A subset of Ada from Fischer/LeBlanc: "Crafting a Compiler" */ IGNORE CASE CHARACTERS letter = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz". digit = "0123
www.eeworm.com/read/371236/9560398

atg microada.atg

COMPILER MAda /* A micro subset of Ada as used by H Dobler in "Compilerbau I". */ IGNORE CASE CHARACTERS letter = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz". digit
www.eeworm.com/read/371236/9560410

atg oberon.atg

COMPILER Oberon /* A grammar for Oberon (Not LL(1)) */ CHARACTERS eol = CHR(10) . letter = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz" . digit = "0123456789" . hex
www.eeworm.com/read/371236/9560412

atg pascal.atg

COMPILER Pascal /* J & W Pascal - not Turbo Pascal */ /* This grammar is not LL(1) */ CHARACTERS eol = CHR(13) . letter = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz" .
www.eeworm.com/read/371236/9560442

atg xref.atg

/********************************************************** ** XREF.ATG ** Coco/R C Taste Cross-reference Generator Example. ** Adapted to C++ by Frankie Arzu ** from
www.eeworm.com/read/371236/9560465

atg pretty.atg

/********************************************************** ** PRETTY.ATG ** Coco/R C Taste Pretty Printer Example. ** Adapted to C++ by Frankie Arzu ** from Moessenb
www.eeworm.com/read/371236/9560468

atg taste.atg

/********************************************************** ** TASTE.ATG ** Coco/R C Taste Compiler/Interpreter Example. ** Adapted to C++ by Frankie Arzu ** from Moe