6
2

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.

RUBY

Posted at

##Data typeの種類

大きく3つあります。
■ 数字(number):0~9, integerとfloat等に細分化できます。
■ 文字列(string):数字、又は文字列を("), (')の中に入れて文字列として扱うことができます。
■ ブーリアン(boolean):trueとfalse

##出力
文字列等の出力は「puts」を使います。

ruby
> puts "Hello world"

##関数
関数定義には「def」を使います。

ruby
> def test
> puts "Hello world"
> end

そしてその関数を呼びたいときは関数名を使います。

ruby
> test

##パラメータ
関数にパラメータも使うことができます。

ruby
> def test(name="para")
> puts "Hello #{name}"
> end

結果として「test」だけだと「Hello para」
「test "world"」みたいに入れると「Hello world」が出力します。

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?