0
WHy is this code giving me a result from the previously run codes on my eclipse?
public class Boy { void cackle() { System. out.println("haha"); } } class MyClass { public static void main(String[] args) { Boy Tobi = new Boy(); Tobi.cackle(); } }
2 Answers
0
Go to your previous Projects and Close them
0
I have tried that...still gives me prints out the result of my previously run code