Skip to content

Instantly share code, notes, and snippets.

@adaball
Last active February 7, 2024 14:55
Show Gist options
  • Save adaball/f678077559e037f7c7361770e8b2d83b to your computer and use it in GitHub Desktop.
Save adaball/f678077559e037f7c7361770e8b2d83b to your computer and use it in GitHub Desktop.
The Most Important Ruby Script ™️
#!/usr/bin/env ruby
# Generate a random D&D alignment.
ethic = ['lawful', 'neutral', 'chaotic']
moral = ['good', 'neutral', 'evil']
r = Random.new
e = ethic[r.rand(3)]
m = moral[r.rand(3)]
if e == m
e = 'true'
end
puts "#{e.capitalize} #{m.capitalize}"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment