You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

SampleClass.java 203B

12345678910111213
  1. public class SampleClass
  2. {
  3. void foo (String s)
  4. {
  5. System.out.println ("Printing " + s);
  6. }
  7. public static void main(String[] args)
  8. {
  9. SampleClass sc = new SampleClass();
  10. sc.foo ("hahaha");
  11. }
  12. }