2017年11月28日火曜日

開発環境

初めてのC# 第2版 (Jesse Liberty (著)、Brian MacDonald (著)日向 俊二 (翻訳)、オライリージャパン)の2章(Visual Studio)、2.7(練習問題)、練習2-3.を取り組んでみる。

コード

using System;

namespace Console2
{
    class Program
    {
        static void Main(string[] args)
        {
            Console.WriteLine("Hello World!");
            for (int i = 0; i < 0; i++)
            {

            }
        }
    }
}

入出力結果(Terminal)

Hello World!
-bash: /var/folders/jg/y5d0zx4n1c9644tjrmn90jpc0000gn/T/tmp30675488.tmp: cannot overwrite existing file

Press any key to continue...

0 コメント:

コメントを投稿