fork download
  1. using System;
  2. using System.Collections.Generic;
  3.  
  4. public class Program
  5. {
  6. public static IEnumerable<int> Test() {
  7. return new[] { 1, 2, 3 };
  8. }
  9.  
  10. public static void Main()
  11. {
  12. var x = Test();
  13. }
  14. }
Success #stdin #stdout 0.01s 33560KB
stdin
Standard input is empty
stdout
Standard output is empty