Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature/21 12 04 #41

Open
wants to merge 15 commits into
base: master
Choose a base branch
from
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,13 +29,13 @@ The source code for all examples can be found in the directory [src/main/java/la
* Appendix D: Lambdas and JVM bytecode
We will update the repository as we update the book. Stay tuned!

### Make sure to have JDK8 installed
### Make sure to have JDK9 installed
The latest binary can be found here: http://www.oracle.com/technetwork/java/javase/overview/java8-2100321.html

$ java -version

java version "1.8.0_05"
Java(TM) SE Runtime Environment (build 1.8.0_05-b13)
java version "1.9"
Java(TM) SE Runtime Environment (build 1.9)
Java HotSpot(TM) 64-Bit Server VM (build 25.5-b02, mixed mode)


Expand Down
8 changes: 8 additions & 0 deletions src/main/java/lambdasinaction/my/GreatDay.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
package lambdasinaction.my;

public class GreatDay {
private String address;
private boolean gender;
private String body;
private int number;
}
Loading