LoginSignup
1
0

More than 3 years have passed since last update.

【Ruby】puts / printの違い

Last updated at Posted at 2020-11-27

Rubyで使うputsとprintの違い

結論、改行がされるかされないか。
printは改行されず、putsは改行される。

記述方法

first.rb
puts "Hello World" #改行あり
puts "Hello World" #改行あり

実行結果

% ruby first.rb
Hello World
Hello World

printの記述方法

second.rb
print "Hello World" #改行なし
print "Hello World" #改行なし

実行結果

% ruby second.rb
Hello WorldHello World
1
0
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
1
0