I notice that there are a few little helper functions I seem to always wind up writing given different contexts. In Erlang one of these is an inverse function for file:consult/1, which I have to write any time I use a text file to store config data*. Very simply: write_terms(Filename, List) -> Format = fun(Term) […]