How would you save the world *without* modifying this C# code? Modifying other settings are fine!

Posted by BoloFan05@reddit | learnprogramming | View on Reddit | 24 comments

using System;

class Program
{
    static void Main()
    {
        string result = CheckMissile();
        Console.WriteLine(result ?? "null");
    }

    static string CheckMissile()
    {
        if ("MISSILE".ToLower() == "missile")
        {
            return "missile fired!";
        }
        return "world is saved!";
    }
}