Erlang (programming language)/Tutorials/List Comments: Difference between revisions
Jump to navigation
Jump to search
imported>Eric Evers (New page: ==Comments== The prefered comment style in erlang is to use triple %%% for module level comments. Double %% for function level comments and simgle % for line level comments.) |
imported>Eric Evers |
||
Line 1: | Line 1: | ||
==Comments== | ==Comments== | ||
The prefered comment style in erlang is to use | 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. |
Revision as of 19:23, 19 April 2008
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.