Exemple #1
0
        static void Main(string[] args)
        {
            cat kitty = new cat();

            kitty.name  = "키티";
            kitty.color = "하양";
            kitty.meow();
            WriteLine($"{kitty.name} : {kitty.color}");

            cat nero = new cat();

            nero.name  = "네로";
            nero.color = "검정";
            nero.meow();
            WriteLine($"{nero.name} : {nero.color}");
        }