package org.test; public class Test { public static void main(String[] args) { Test test = new Test(); test.speak(); } public void speak() { System.out.println("World"); } }