module Mercenary
Constants
- VERSION
Public Class Methods
Source
# File lib/mercenary.rb, line 18 def self.program(name) program = Program.new(name) yield program program.go(ARGV) end
Public: Instantiate a new program and execute.
name - the name of your program
Returns nothing.