I want to print a string of text on the world based on a fulfilment of a condition. i have done the following in my Server class. if it's okay how can i call it on the World class
public String electionStatus(){
if(getVotesGranted() >= qourum){
return "Election Successful";
}else{
return "Election Fail";
}
}
