R package that provides a very simple string and number storage system. I needed one for my thesis, so this package is mostly for personal use.
devtools::install_github("nevrome/txtstorage")
storage_file <- "teststorage.txt"
important_number <- 3
important_string <- "I like cheese."
txtstorage::store("Important number", important_number, storage_file)
txtstorage::store("Important string", important_string, storage_file)
new_important_number <- 4
txtstorage::store("Important number", new_important_number, storage_file)
txtstorage::read("Important number", storage_file)
rdoxygen is released under the GNU General Public Licence, version 2. Comments and feedback are welcome, as are code contributions.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.