Files
2023-06-28 22:10:08 +02:00

5 lines
89 B
Java

// Simple records
record Point(x, y){ }
//Combination of records
record Line(pt1, pt2){}