/* Author : Michael Robinson Program : noDataPassProgram.java Purpose : To present, the Java class, the main method, calling printMyInfo1() method Updated : November 12th, 2099 by Michael */ public class noDataPassProgram { public static void printMyInfo1() { System.out.print( "Hi I am at the printMyInfo1() method\n" ); }//end public static void printMyInfo1() public static void main( String arg[] ) { //calls method NOT passing any data to printMyInfo1 printMyInfo1(); System.out.print( "Hi I am back at main from printMyInfo1()"+ " method\n" ); }//end public static void main( String arg[] ) }//end public class noDataPassProgram