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

irb使用方法

Posted at

#irb

irbコマンドは、ターミナルから直接Rubyのプログラムを動かすことができる
機能を起動します。ちなみに、irbは「Interactive Ruby」の略です。

簡易的にRubyを実行する手順を説明します。
今回はirbコマンドという機能を使って、ファイル無しでプログラムを実行します。

[例]ターミナル
# irbを起動
% irb

#####[例]ターミナル

irb.png

irbではエンターキーを打つたびに、そこまでの記述を実行して結果を表示することができます。

irbirb.png

irbを終了するときは、exitと記述して実行します。

【例】irbの終了
# irbを終了
irb(main):001:0> exit

# 問題なく終了すればプロンプトが表示される
%

値を簡単に確認するときはirbを使います。

#まとめ
irbとは、ターミナルから直接Rubyのプログラムを動かすことが
できる機能のこと。

####以上。

0
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
0
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?