What does this program print after one duplicate handler is removed?

from Delegates and events
C# 14 / .NET 10 intermediate 2 min

What does this program print after one duplicate handler is removed?

csharp
using System;

Action write = () => Console.Write("W");
Action handlers = write;
handlers += write;
handlers -= write;
handlers();
Open in playground
Report an error