LoginSignup
0
0

More than 1 year has passed since last update.

Ruby symbol

Posted at
a = {"a":1,"c":2}
p a

unless a[:a]
  p "unless a"
end

unless a[:cc]
  p "unless cc"
end

if a[:a]
  p "a ok"
end
if a[:cc]
  p "cc ok"
end
{:a=>1, :c=>2}
"unless cc"
"a ok"
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