fork download
  1. using System;
  2.  
  3. public class Test
  4. {
  5. public static void abc(){
  6. Console.Write("base");
  7. }
  8. }
  9.  
  10. public class Stu
  11. {
  12. public static void Main()
  13. {
  14. // your code goes here
  15. Test.abc();
  16. }
  17. }
Success #stdin #stdout 0s 29664KB
stdin
Standard input is empty
stdout
base