# HG changeset patch # User kazz # Date 1266550792 -32400 # Node ID 89f80ab5efe22e5baece49f066e07ac671d57c61 # Parent 5b83350011d6bbccb133b91ac8e49b27abc9f759# Parent 9553f4518b62350557b7dd407c7a7b879df2e3c8 merged diff -r 5b83350011d6 -r 89f80ab5efe2 test.c --- a/test.c Fri Feb 19 07:28:12 2010 +0900 +++ b/test.c Fri Feb 19 12:39:52 2010 +0900 @@ -4,5 +4,7 @@ int a, b; a = 10; b = 11; printf("hello %d\n", a + b); + printf("hello %d, %d\n", a = 10, b = 11); + printf("hello %d\n", a = 10, b = 11); return 0; }