fork(1) download
  1. using System;
  2.  
  3. namespace ConsoleApplication1
  4. {
  5. class Program
  6. {
  7. static void Main(string[] args)
  8. {
  9. int number = 0;
  10. string l = "hehe";
  11. do
  12. {
  13. Console.WriteLine(l);
  14. Console.WriteLine(number);
  15. number = number + 1;
  16. Console.ReadLine();
  17. } while(number < 5)
  18. }
  19. }
  20. }
  21.  
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
prog.cs(18,10): error CS1525: Unexpected symbol `}', expecting `;'
prog.cs(21,1): error CS8025: Parsing error
Compilation failed: 2 error(s), 0 warnings
stdout
Standard output is empty