Skip to content

Latest commit

 

History

History
10 lines (7 loc) · 207 Bytes

File metadata and controls

10 lines (7 loc) · 207 Bytes

Records

If you have a class whose only purpose is to ferry data around, you can instead use a record.

record Person(String name, int age) {}