■改行する

■書式

print "\n"

■説明

改行するは末尾に"\n"を指定します。print "xyz\n"とするとxyzと表示され改行が行われます。

■サンプル

#!/usr/bin/ruby
print "Sample\nText\n"