aboutsummaryrefslogtreecommitdiff
path: root/random_stack.rb
diff options
context:
space:
mode:
Diffstat (limited to 'random_stack.rb')
-rwxr-xr-xrandom_stack.rb8
1 files changed, 0 insertions, 8 deletions
diff --git a/random_stack.rb b/random_stack.rb
deleted file mode 100755
index ab6ad35..0000000
--- a/random_stack.rb
+++ /dev/null
@@ -1,8 +0,0 @@
-#!/usr/bin/ruby
-
-if ARGV.length != 2
- puts "Usage: #{$PROGRAM_NAME} start end"
- exit
-end
-
-puts (ARGV[0]..ARGV[1]).to_a.shuffle.join(" ")