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.

putsメソッド

Posted at

#putsメソッド
Rubyに用意された、ターミナルに値を出力するメソッドです。
putsに続けて値を記述すると、その値をターミナルに出力します。

【例】putsメソッド
name = "Taro"

# ターミナルに出力する
puts name
【例】ターミナル
# nameの値が出力される
=> "Taro"

#rubyファイルを以下のように編集して下さい。
それでは、実際にコードを書きましょう。
rubyファイルを以下のように編集します。

rubyファイル
input = "こんにちは"

puts "入力した値は#{input}です"

#まとめ

putsメソッドとは、ターミナルに値を出力するメソッド。

#####以上。

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?