scc

simple c99 compiler
git clone git://git.simple-cc.org/scc
Log | Files | Refs | Submodules | README | LICENSE

0061-comments.c (73B)


      1 // line comment
      2 
      3 int
      4 main()
      5 {
      6 	/*
      7 		multiline
      8 		comment
      9 	*/
     10 	return 0;
     11 }