5
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

初めてのQiitaなので色々試してみる。

Posted at

はじめに

ここでは主に備忘録を目的としてQiitaを利用いたします。筆者のプログラミング経験はほとんどありません。

C#を選んだ理由

Unityを使うためです。
C#はプログラミングの習得レベルが比較的高いと言われていますが、動機が明確なので抵抗はないです。

プログラミング経験

大学の時にCをやっていましたが、挫折した経験があります。当時プログラミングを取得したいという願望がそれほどでもなかったからだと考えています。

Hello worldを表示させてみる(コンソール)

using System;

namespace ConsoleApp6 //名前はなんでも良い
{
    class Program
    {
        static void Main(string[] args)
        {
            Console.WriteLine("Hello world"); //Hello world を出力する
            Console.ReadKey();//何かキーを押せばアプリ終了。
        }
    }
}

出力結果

Hello world

画像

Helloworld.png

感想

unityではコンソールではなくDebug Logを使います。
Markdown記法を使ったことないので、だんだん慣れていきます。

5
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
5
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?