Home
       0079-cond.c - scc - simple c99 compiler
  HTML git clone git://git.simple-cc.org/scc
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
   DIR README
   DIR LICENSE
       ---
       0079-cond.c (80B)
       ---
            1 int
            2 main()
            3 {
            4         if(0 ? 1 : 0)
            5                 return 1;
            6         if(1 ? 0 : 1)
            7                 return 2;
            8         return 0;
            9 }