Toolshed.Misc.load_term-exclamation-mark

You're seeing just the function load_term-exclamation-mark, go back to Toolshed.Misc module for more information.

Load an Erlang term from the filesystem.

Examples

#

iex> save_term!({:some_interesting_atom, ["some", "list"]}, "/root/some_atom.term")
{:some_interesting_atom, ["some", "list"]}
iex> load_term!("/root/some_atom.term")
{:some_interesting_atom, ["some", "list"]}