What is the difference between io:format and io:fwrite in Erlang?

Viewed 822

Even in the documentation, there does not seem to be any difference.

1 Answers

io:fwrite was introduced as an alias for io:format, for symmetry with io:fread, but most people kept using the name format anyway.

Related