Home
       0017-struct.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
       ---
       0017-struct.c (90B)
       ---
            1 int
            2 main()
            3 {
            4         struct { int x; int y; } s;
            5         
            6         s.x = 3;
            7         s.y = 5;
            8         return s.y - s.x - 2; 
            9 }