Created
September 1, 2020 15:31
-
-
Save sebastienblanc/0e1cf856dc7c964af7a3b866e0395976 to your computer and use it in GitHub Desktop.
Showing Java Record
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//usr/bin/env jbang "$0" "$@" ; exit $? | |
//JAVA 14 | |
//JAVAC_OPTIONS --enable-preview -source 14 | |
//JAVA_OPTIONS --enable-preview | |
public record Pet(String name, int age) {} | |
var pet = new Pet("Nuage",6); | |
System.out.println(pet); | |
/exit |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment