5 lines
89 B
Plaintext
5 lines
89 B
Plaintext
|
// Simple records
|
||
|
record Point(x, y){ }
|
||
|
|
||
|
//Combination of records
|
||
|
record Line(pt1, pt2){}
|