Skip to content

Instantly share code, notes, and snippets.

@pasberth
Created December 23, 2013 15:43
Show Gist options
  • Select an option

  • Save pasberth/8099233 to your computer and use it in GitHub Desktop.

Select an option

Save pasberth/8099233 to your computer and use it in GitHub Desktop.
# ユーザに文字列を入力させ、それが"true"か"真"なら"OK"それ以外なら"NG"と表示させなさい
# -*- coding: utf-8 -*-
s = gets.chomp
if s == "true" || s == "真" then
puts "OK"
else
puts "NG"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment