fork download
  1. using System;
  2.  
  3. public class Test
  4. {
  5. public static void Dostuff(string greeting, string name)
  6. {
  7.  
  8. string sentence = greeting + name;
  9. Console.WriteLine(sentence);
  10. }
  11.  
  12.  
  13. public static void Main()
  14. {
  15. Dostuff("Good morning ", "Nevin");
  16. }
  17. }
Success #stdin #stdout 0.03s 25972KB
stdin
Standard input is empty
stdout
Good morning Nevin