Records give you value equality and a positional constructor for free. Use a `record struct` so it stays on the stack:
```csharp
public record struct Position(int X, int Y);
```
Then create `var p = new Position(3, 4);` and print it.
Sign in to save your code and track progress across devices.