fork download
  1. using System;
  2. using static System.Console;
  3.  
  4. WriteLine("Hello World");
  5. string stringex = "string";
  6. int integerex = 17;
  7. double floatex = 17.5;
  8. char charex = '!';
  9. bool boolex = true;
  10. WriteLine(stringex);
  11. WriteLine(integerex);
  12. WriteLine(floatex);
  13. WriteLine(charex);
  14. WriteLine(boolex);
  15.  
Success #stdin #stdout 0.05s 26140KB
stdin
Standard input is empty
stdout
Hello World
string
17
17.5
!
True