fork download
  1. using System;
  2.  
  3. public class Test
  4. {
  5. int x=20;
  6. public static void Main()
  7. {
  8. // your code goes here
  9. Test obj=new Test();
  10. Console.WriteLine(obj.x);
  11. }
  12. }
Success #stdin #stdout 0.02s 15908KB
stdin
Standard input is empty
stdout
20