I just started learning java from a beginners book. The book shows how to do everything in Eclipse. I want to learn java in A.S. for making apps. I finally compiled code in Android Stuido. I got errors when trying to run a java class file even though the code was perfect, until I found a post in here that sais you have to run it in debug mode. Do I have to run all my "learning examples" in debug mode and select the spesific .java class, or do people do this another way? I Have no experience in coding.
example:
public class MyApplicationLeet {
/**
*
* param args
*/
public static void` main(String[] args) {
System.out.println("Chocolate, royalties, sleep");
}
}