fork(1) download
  1. using System;
  2.  
  3. public class Test
  4. {
  5. public static void Main()
  6. {
  7. string sConstr = "asdfghj;zxcvb";
  8. Console.WriteLine(sConstr.Split(';')[1].Substring(0,4));
  9. }
  10. }
Success #stdin #stdout 0.02s 33760KB
stdin
Standard input is empty
stdout
zxcv