// Copyright MageLang Institute; // Version $Id: //depot/main/src/edu/modules/JavaIntro2/magercises/Methodcall/Solution/Methodcall.java#2 $ public class Methodcall { public static void main(String[] args) { new Methodcall().start(); // students: ignore this } public void start() { // a test harness for two methods // } // Define method sayHello with no arguments and no return value // Make it print "Hello". // Define method addTwo with an int parameter and int return type // Make it add 2 to the parameter and return it. }