Home
       0061-comments.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
       ---
       0061-comments.c (73B)
       ---
            1 // line comment
            2 
            3 int
            4 main()
            5 {
            6         /*
            7                 multiline
            8                 comment
            9         */
           10         return 0;
           11 }