

   WWrriittee aann IInntteerrnnaall OObbjjeecctt ttoo aa FFiillee

        dput(x, file = "")
        dget(file)

   VVaalluuee::

        `dput' opens `file' and deparses the object `x' into
        that file.  The object name is not written (contrary to
        `dump').  If `x' is a function the associated environ-
        ment is stripped.  Hence scoping information can be
        lost.

        Using `dget', the object can be recreated (with the
        limitations mentioned above).

   SSeeee AAllssoo::

        `deparse', `dump', `write'.

   EExxaammpplleess::

        ## Write an ASCII version of mean to the file "foo"
        dput(mean, "foo")
        ## And read it back into `bar'
        bar <- dget("foo")

