Erlang (programming language)/Tutorials/List Comments

From Citizendium
< Erlang (programming language)‎ | Tutorials
Revision as of 16:09, 24 August 2009 by imported>Eric Evers
Jump to navigation Jump to search

Comments

The prefered comment style in erlang is to use:

 %%% triple for module level comments,  
 %% double for function level comments and 
 % single for line level comments.