Skip to content

Latest commit

 

History

History
8 lines (6 loc) · 158 Bytes

records.md

File metadata and controls

8 lines (6 loc) · 158 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) {}