Skip to content

Instantly share code, notes, and snippets.

@micronix
Created July 15, 2015 16:21
Show Gist options
  • Save micronix/802681007c6cf6b216fc to your computer and use it in GitHub Desktop.
Save micronix/802681007c6cf6b216fc to your computer and use it in GitHub Desktop.
Example Random
options = ['rock', 'paper', 'scissors']
index = rand(3)
computer = options[index]
# more compact
options = ['rock', 'paper', 'scissors']
computer = options[rand(3)]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment