Home
       0112-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
       ---
       0112-cond.c (104B)
       ---
            1 int
            2 main()
            3 {
            4         int x = 0;
            5         int y = 1;
            6         if(x ? 1 : 0)
            7                 return 1;
            8         if(y ? 0 : 1)
            9                 return 2;
           10         return 0;
           11 }