Basics of Java Programming- Part 1
Code comments
To add comments to your code, use //.
Example:
class DivisionTypes {
public static void main(String args[]) {
System.out.println("Hello, Java"); //Prints Hello, Java to the screen
}
}
Printing to the screen
Printing is one of t...
richard.hashnode.dev5 min read