fork(2) download
  1. using System;
  2.  
  3. public class Test
  4. {
  5. public static void Main()
  6. {
  7. String nume = Console.ReadLine();
  8. Console.WriteLine("Salut " + nume + "!");
  9. }
  10. }
Success #stdin #stdout 0.03s 24104KB
stdin
GInfo
stdout
Salut GInfo!