fork download
  1. using System;
  2.  
  3. //Single Line Comment
  4.  
  5. /*
  6.   This is a Multiline Comments
  7. which spawns many lines
  8. */
  9. public class Add_Comments
  10. {
  11. public static void Main (String []args)
  12. {
  13. Console.WriteLine ("You should comment your code.");
  14. }
  15. }
Success #stdin #stdout 0.02s 33760KB
stdin
Standard input is empty
stdout
You should comment your code.