-
-
Save pasberth/8099233 to your computer and use it in GitHub Desktop.
# ユーザに文字列を入力させ、それが"true"か"真"なら"OK"それ以外なら"NG"と表示させなさい
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # -*- 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