TITLE(dput @@ Write an Internal Object to a File)
USAGE(
dput(x, file="")
)
ALIAS(dput)
VALUE(
LANG(dput) opens LANG(file) and deparses the object LANG(x) into that file.
If LANG(x) is a function the associated environment is stripped.
Hence scoping information can be lost.
)
SEEALSO(
LANG(LINK(deparse)), LANG(LINK(dump)), LANG(LINK(dget)), LANG(LINK(write)).
)
EXAMPLES(
# write an ASCII version of mean to the file "foo"
dput(mean,"foo")
)
