~statik/ubuntu/maverick/erlang/erlang-merge-testing

1.2.5 by Sergei Golovan
Import upstream version 13.b.4-dfsg
1
Comment DEFINITIONS AUTOMATIC TAGS ::=
2
3
BEGIN
4
5
/* comments as to the 2002 standard
6
7
this is the new added way of commenting multile lines */
8
9
/* it is also allowed to have -- old kind of comment signs inside
10
this new variant. The two dashes will lose their meaning as a comment
11
inside a multiline comment, /* the new type of comment may also be 
12
nested */ */
13
14
Seq ::= SEQUENCE {
15
  a INTEGER,
16
  b BOOLEAN
17
}
18
19
/* another multiline comment, bu t on one line. */
20
21
END