fork(2) download
  1. using System;
  2. using System.Collections.Generic;
  3.  
  4. public class Test
  5. {
  6. public static void Main()
  7. {
  8. Console.WriteLine(string.Join(" ", (IEnumerable<char>)"Hello"));
  9. }
  10. }
Success #stdin #stdout 0s 29800KB
stdin
Standard input is empty
stdout
H e l l o