fork(2) download
  1. using System;
  2.  
  3. public class Test
  4. {
  5. delegate void WriteDelegate(string msg, params object[] args);
  6. public static void Main() {
  7. WriteDelegate w = Console.Write;
  8. w("Hello");
  9. w(", {0}", "world!");
  10. }
  11. }
Success #stdin #stdout 0.02s 33848KB
stdin
Standard input is empty
stdout
Hello, world!