fork download
  1. using System;
  2.  
  3. public class Test
  4. {
  5. public static void Main()
  6. {
  7. int []a =new int[3]
  8. int [] a ={1,2,3}
  9. Console.WriteLine(a[0]);
  10. }
  11. }
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
prog.cs(8,1): error CS1525: Unexpected symbol `int'
prog.cs(8,8): error CS1525: Unexpected symbol `a'
prog.cs(8,17): error CS1525: Unexpected symbol `}', expecting `,' or `]'
prog.cs(9,23): error CS1525: Unexpected symbol `)', expecting `,' or `]'
Compilation failed: 4 error(s), 0 warnings
stdout
Standard output is empty