view test/code-gen.pl @ 204:4c614334f3d0

long long test parse
author kono
date Tue, 13 Apr 2004 12:26:56 +0900
parents 3ae7e188416f
children c575422d8b6e
line wrap: on
line source

#!/usr/bin/perl

print "#include \"code-gen.c\"\n";
print "int main() {\n";

while(<>)
{
    if (/^\w+\(/) {
	print "\t$&",");\n";
    }
}
print "return 1; }\n";