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 1 year has passed since last update.

Ruby 備忘録

Posted at

##コメント コンソールログ

#コメント
puts "hello world"

##変数 文字列との連結

name = "阿部寛"
puts name
#○
puts "私は#{name}です"
#× エラー
puts "私は" + name + "です"

|ポイント|説明|
|----|----|----|
|#{変数}|特に無し||
|""|ダブルクウォーテーションで囲う||

##配列

languages = ["ラーメン", "カレー", "寿司"]
#ラーメンを出力
puts languages[0]

##if

score = 73
if score > 80
  puts "優"
elsif score > 60
  puts "良"
else
  puts "不可"
end
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?