fork(3) download
  1. using System;
  2.  
  3. public class Test
  4. {
  5. public static void Main()
  6. {
  7. string text = "abcdefghijklmnopqrstuvwxyz";
  8. text = text.Remove(3, "hello world".Length).Insert(3, "hello world");
  9. Console.WriteLine(text);
  10. }
  11. }
Success #stdin #stdout 0.02s 33768KB
stdin
Standard input is empty
stdout
abchello worldopqrstuvwxyz