fork(7) download
  1. using System;
  2.  
  3. public class Test
  4. {
  5. public static void Main()
  6. {
  7. var myString = String
  8. .Format(
  9. "hello " +
  10. "world" +
  11. " i am {0}" +
  12. " and I like {1}",
  13. "a pony",
  14. "other ponies"
  15. );
  16.  
  17. Console.WriteLine(myString);
  18.  
  19. }
  20. }
Success #stdin #stdout 0.02s 24160KB
stdin
Standard input is empty
stdout
hello world i am a pony and I like other ponies