Hello, how can I fix this bug:
Exception in thread "main" java.lang.RuntimeException: Uncompilable source code - cannot find symbol
symbol: class tuna
location: class apples.Apples
The code is:
package apples; import java.util.Scanner; public class Apples { /** * @param args the command line arguments */ public static void main(String[] args) { // TODO code application logic here Scanner input=new Scanner(System.in); tuna tunaObject = new tuna (); System.out.println("Enter your name here:"); String name = input.nextLine(); tunaObject.simpleMessage(name);
Thanks!