#!/usr/bin/env jruby

require 'jruby/jrubyc'

status =  JRubyCompiler::compile_argv(ARGV)

if (status != 0)
  puts "Compilation FAILED: #{status} error(s) encountered"
  exit status
end
