What does this program print?

from Records
C# 14 / .NET 10 beginner 2 min

What does this program print?

csharp
using System;

Price first = new("EUR", 10m);
Price second = new("EUR", 10m);
Price copied = first with { };

Console.WriteLine(first == second);
Console.WriteLine(ReferenceEquals(first, copied));

public sealed record Price(string Currency, decimal Amount);
Open in playground
Report an error