Erlang (programming language)/Tutorials/List Comments: Difference between revisions
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>Meg Taylor m (spelling: prefered -> preferred) |
||
(4 intermediate revisions by 3 users not shown) | |||
Line 1: | Line 1: | ||
{{subpages}} | |||
==Comments== | ==Comments== | ||
The | The preferred comment style in erlang is to use: | ||
%%% triple for module level comments, | |||
%% double for function level comments and | |||
% single for line level comments. |
Latest revision as of 17:21, 11 February 2010
The metadata subpage is missing. You can start it via filling in this form or by following the instructions that come up after clicking on the [show] link to the right. | |||
---|---|---|---|
|
Comments
The preferred comment style in erlang is to use:
%%% triple for module level comments, %% double for function level comments and % single for line level comments.