fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. //Single Line Comment
  5.  
  6. int main()
  7. {
  8. /*
  9. This is a Multiline Comment
  10. which spawns many lines.
  11. */
  12.  
  13. cout << "You should comment your code." << endl;
  14. return 0;
  15. }
Success #stdin #stdout 0s 3340KB
stdin
Standard input is empty
stdout
You should comment your code.