fork download
  1. using System;
  2.  
  3. class Print
  4. {
  5. public void drucke ()
  6. {
  7. Console.WriteLine("hallo bulme");
  8. }
  9.  
  10. public void drucke ( String str)
  11. {
  12. Console.WriteLine(str);
  13.  
  14. }
  15. }
  16.  
  17. public class main
  18. {
  19. public static void Main(String[] args)
  20. {
  21. Print print = new Print();
  22. print.drucke () ;
  23. print.drucke("hallo world");
  24.  
  25.  
  26. Console.WriteLine("hallo bulme");
  27.  
  28. }
  29. }
Success #stdin #stdout 0.04s 23840KB
stdin
Standard input is empty
stdout
hallo bulme
hallo world
hallo bulme