4444Jam4444 wrote...
Code omitted because my comment was marked as spam for posting my world code!!!
public class myWorld extends World
{
public String myWorld(){ //String return type
//stuff
}
}public Calculator(){
...
printInitialMessage();
...
}
public void printInitialMessage(){
System.out.println("NOTICE FOR THE USER:");
System.out.println("It is vital that any bugs in this software are reported");
System.out.println("to the development team for possible maintenance.");
System.out.println("Some issues can go unnoticed in the development of a");
System.out.println("software, despite extensive bug testing.");
System.out.println("The development team wish to maintain a quality product,");
System.out.println("and user feedback is highly effective and highly valued");
System.out.println("in the maintenance of this product.");
}/**private boolean indexIsValid = true;*/ //This boolean isn't even used in any of my code, was intended for a feature that I haven't added yet
Calculate calculate = ((Calculator)getWorld()).myCalculator;
Calculate calculate = ((Calculator)getWorld()).myCalculator;