Skip to content

Instantly share code, notes, and snippets.

View driessamyn's full-sized avatar

Dries Samyn driessamyn

View GitHub Profile
@driessamyn
driessamyn / Java23Example.java
Last active February 17, 2025 08:07
Kotlin/Java comparison
// from: https://gist.github.com/MichaelDrogalis/37af55273ea17f3255c750ae60fc98d4
import java.util.List;
public class Java23Example {
record Person(String name, int age) {}
public static void main(String[] args) {
var people = List.of(
new Person("Alice", 30),