Java Refresher
This week I decided to give myself a refresher on Java since I haven't studied it heavily in a few months. I'm currently going through Java 11 For Complete Beginners by John Purcell on Udemy. So far in his lesson plan, he has talked about how Java compiles the code so that it can be used from computer to computer with no real issue. John has also ran through the very basics of how to print out different things. System.out.println("Hello world!"); That's the famous first line of code that every beginner to coding learns. Although it may be slightly different depending on language, the concept is the same. The course is also teaching the fundamentals of code like creating integers and variables to be used throughout the code. They can incorporated into different kinds of arithmetic depending on my needs. int cats = 7; int dogs = 5; int total = cats + dogs; System.out.println(total); This small bl...