Erlang (programming language)/Tutorials/List Comments: Difference between revisions

From Citizendium
Jump to navigation Jump to search
imported>Tom Morris
imported>Eric Evers
No edit summary
Line 5: Line 5:
The prefered comment style in erlang is to use:
The prefered comment style in erlang is to use:
   
   
%%% triple for module level comments,   
  %%% triple for module level comments,   
%% double for function level comments and  
  %% double for function level comments and  
% single for line level comments.
  % single for line level comments.

Revision as of 16:09, 24 August 2009


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.