# HG changeset patch # User kazz # Date 1266530459 -32400 # Node ID 97fda82e4b503de10bf21a85619852f6a728f7cf # Parent ec57fdd8c880967eba6304ad0a021fc0796765bb add a b diff -r ec57fdd8c880 -r 97fda82e4b50 test.c --- a/test.c Fri Feb 19 06:59:54 2010 +0900 +++ b/test.c Fri Feb 19 07:00:59 2010 +0900 @@ -1,5 +1,8 @@ #include int main(int argc, char *argv[]) { + int a, b; + a = 100; b = 101; + printf("%d\n", a + b); return 0; }