0 / 60 seg.

What prints to the console when this code is executed?

public delegate void AuthCallback(bool validUser);
public static AuthCallback loginCallback = Login;
public static void Login()
{
    Console.WriteLine("Valid user!");
}
public static void Main(string[] args)
{
    loginCallback(true);
}