Void methods return nothing
to declare a void method public void printArea() { // content }
public - access specifier
void - return type
printArea - method name
() - parameter list
method names should be lower camel case
instance variables can be used across methods
to call method just objectName.method()