Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: acd6b165b08a67cf2490c17ae2721fd7863cc905 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
/** Comment */
abstract class A {
  /** Member Comment */
  private x : Integer = 1;
  private y : String;
  private z : any[0..*];
  /** Another comment */
  activity R(in x: Integer);
  public abstract p(in x : Integer, out y : Integer);
  public q(in s : String[]) : Boolean { return s == ""; }
}

Back to the top