fork(1) download
  1. using System;
  2.  
  3. string stringex = "string";
  4. int integerex = 17;
  5. double floatex = 17.5;
  6. char charex = '!';
  7. bool boolex = true;
  8. Console.WriteLine(stringex);
  9. Console.WriteLine(integerex);
  10. Console.WriteLine(floatex);
  11. Console.WriteLine(charex);
  12. Console.WriteLine(boolex);
  13.  
  14. namespace HelloWorld
  15. {
  16. class Program
  17. {
  18. static void Main(string[] args)
  19. {
  20. Console.WriteLine("Hello World");
  21. }
  22. }
  23. }
  24.  
Success #stdin #stdout 0.05s 25564KB
stdin
Standard input is empty
stdout
string
17
17.5
!
True