fork download
  1. using System;
  2.  
  3. public class Test
  4. {
  5. public static void Main()
  6. {
  7. String[] strings = { "the", "quick", "brown", "fox", "jumps",
  8. "over", "the", "lazy", "dog", "in", "the",
  9. "barn" };
  10.  
  11. Console.WriteLine(strings[0]);
  12. }
  13. }
Success #stdin #stdout 0.02s 15900KB
stdin
1
2
10
42
11
stdout
the