# File AGTMacOsX.rb, line 30
def apple (the_key)
  apple_fixnum(the_key) if the_key.instance_of? Fixnum
  apple_string(the_key) if the_key.instance_of? String
  # could do this cleaner with 'overload' package, see:

  # http://www.artima.com/forums/flat.jsp?forum=123&thread=155354

end