Home
       0010-goto.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
       ---
       0010-goto.c (111B)
       ---
            1 int
            2 main()
            3 {
            4         start:
            5                 goto next;
            6                 return 1;
            7         success:
            8                 return 0;
            9         next:
           10         foo:
           11                 goto success;
           12                 return 1;
           13 }