Skip to content

Instantly share code, notes, and snippets.

@pasberth
Created December 23, 2013 14:42
Show Gist options
  • Save pasberth/8098249 to your computer and use it in GitHub Desktop.
Save pasberth/8098249 to your computer and use it in GitHub Desktop.
# メソッド random はtrueかfalseを返す # trueならば"OK"falseならば"NG"と表示させなさい
def random
[true, false].sample
end
if random 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