write_eon.Rd
Serializes an R object and writes the eon representation to a file on disk.
write_eon(x, path) write_eon(x, path)
An R object to serialize.
Path to write the eon file.
path, invisibly.
path
tmp <- tempfile(fileext = '.eon') write_eon(list(name = 'Alice', age = 30L), tmp) readLines(tmp) #> [1] "name: \"Alice\"" "age: 30"