2
1

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 3 years have passed since last update.

【超初心者向け】RubyをインストールしたらRubyで遊んでみよう!!その1

Last updated at Posted at 2020-03-31

※本記事はRubyがインストールされた前提の記事です。

Rubyをインストールしたあと、とにかくRubyをいろいろ触ってみて慣れていくための記事です。お役に立てば幸いです。

##環境
Ruby 2.5.1
MacOS Mojave Ver.10.14.6

##インタラクティブRuby(irbコマンド)
ターミナルから直接Rubyのプログラムを動かす「対話シェル」機能を起動させます。irbは「interactive Ruby」の略です。この機能は本来の手順である
【コードを記述】▶︎【ファイルを実行】ではなく、
【コードを常に読み込み】▶︎【実行】してくれる為Rubyの簡単な動作確認などに重宝します。

## 操作法
MacOSの場合、Terminalを立ち上げてirbと入力し、enterキーを押します。

Terminal
irb(main):001:0>

このような画面になったら「対話シェル」が起動しています。次に"Hello World"と入力してください。

irb(main):001:0> "Hello World"
=> "Hello World"

と表示されていれば成功です。お疲れ様でした。

2
1
1

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
2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?