Java examples for Language Basics:Variable
Variable names should not belong to the list of reserved keywords
public class Main { public static void main(String arg[]) { double x, y;/*www .ja v a 2s. c o m*/ // Generate a syntax error: // "not a statement" // int import ; } }