Простые типы / Boolean

sunIsStar = true
strSun = sunIsStar.to_s
# strSun is "true"

earthIsStar = false
strEarth = "#{earthIsStar}"
# strEarth is "false"

puts "strSun is \"#{strSun}\""
puts "strEarth is \"#{strEarth}\""