Created
October 6, 2016 19:00
-
-
Save rsheldiii/feba5b06b866ed88795e1b7a06e77389 to your computer and use it in GitHub Desktop.
automatic compliment sandwich generator
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
#!/usr/bin/env ruby | |
top = ['this looks awesome! ', 'this is excellent!', 'My eyes, they can\'t handle the glory!', 'but soft! what code through yonder window breaks?', 'Stellar!', 'Radical dude!', 'Perfect! I love it!'] | |
bottom = ['You got it, dude!', 'keep rockin, pal!', 'But that\'s just a small suggestion.', 'But everything else is wonderful!', 'But I love how everything else looks!'] | |
puts [top.sample, ARGV.join(' '), bottom.sample].join(' ') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment