1.2 Primitives
Notes
- primitive datatypes are lowercase and include boolean, char, ints, and floats
- nonprimitive data starts with caps and includes Strings and Arrays
- nonprimitives are caps bec they are classes and have methods
- java needs variables to be declared so that it can be compiled
- javac is java's compiler and lets it run more efficiently because it only needs to be compiled once, while python needs to compile every time it is run