Skip to content

Instantly share code, notes, and snippets.

View mat3e's full-sized avatar
🎯
Focusing

Mateusz Chrzonstowski mat3e

🎯
Focusing
View GitHub Profile
import java.util.stream.Stream;
public class Java23Example {
record Person(String name, int age) {}
public static void main(String... args) {
Stream.of(
new Person("Alice", 30),
new Person("Bob", 25),
new Person("Charlie", 40),