aboutsummaryrefslogtreecommitdiff
path: root/challenge-058/arne-sommer/ruby/ch-1.rb
blob: 92a555ce86c62947bd2d4ed334cdff23a1b3070d (plain)
1
2
3
4
5
6
7
8
9
#! /usr/bin/env ruby

begin
  puts Gem::Version.new(ARGV[0]) <=> Gem::Version.new(ARGV[1]);
rescue
  puts "ERROR";
end