summaryrefslogtreecommitdiff
path: root/tests/examplefiles/example.cls
blob: d36ad6f0d0e68be6d0d6fff4276ef7f4a28cc84c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
USING Progress.Lang.*.

CLASS Test INHERITS Progress.Sucks:

  DEFINE PRIVATE VARIABLE cTest AS CHAR NO-UNDO.

  CONSTRUCTOR PUBLIC Test():
    SUPER().
    MESSAGE "Why are you punishing yourself by coding in this language?".
  END CONSTRUCTOR.

  METHOD PUBLIC LOGICAL Blowup(INPUT iTime AS INT):
  END.

END CLASS.