fork(1) download
  1. using System;
  2.  
  3. public class Test
  4. {
  5. public static void Main()
  6. {
  7. var t = "START: Milestone One\r\nFirst milestone is achieved in a week.";
  8. Console.WriteLine(t.Substring(t.IndexOf('\n') + 1).Trim());
  9. }
  10. }
Success #stdin #stdout 0.03s 23880KB
stdin
Standard input is empty
stdout
First milestone is achieved in a week.