#!/usr/bin/env ruby # # Prints out the medical terms (?) for the passed in words require 'webster' class Medical < Webster def lookup self.medical end end def main(argv) Webster.real_main Medical,argv end main ARGV