fork download
  1. using System;
  2.  
  3. public class Test
  4. {
  5. class Cars {
  6. public int whills = 4;
  7. private float speed;
  8. protected bool isWorking = true;
  9. }
  10. class MainClass{
  11. public static void Main()
  12.  
  13. {
  14. Cars audi = new Cars ();
  15. Console.WriteLine (audi.whills);
  16. }
  17. }
  18. }
Success #stdin #stdout 0.02s 14788KB
stdin
Standard input is empty
stdout
4