~ubuntu-branches/ubuntu/edgy/koffice/edgy-updates

« back to all changes in this revision

Viewing changes to lib/kscript/example6.ks

  • Committer: Bazaar Package Importer
  • Author(s): Ben Burton
  • Date: 2004-05-09 11:33:00 UTC
  • mto: This revision was merged to the branch mainline in revision 3.
  • Revision ID: james.westby@ubuntu.com-20040509113300-xi5t1z4yxe7n03x7
Tags: upstream-1.3.1
ImportĀ upstreamĀ versionĀ 1.3.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
class MyWidget
2
 
{
3
 
        MyWidget( in this )
4
 
        {
5
 
                print("MyWidget");
6
 
        }
7
 
 
8
 
        delete( in this )
9
 
        {
10
 
                print("Destruct MyWidget");
11
 
        }
12
 
};
13
 
 
14
 
main
15
 
{
16
 
        m = MyWidget();
17
 
        r = MyWidget();
18
 
        a = MyWidget();
19
 
}
 
 
b'\\ No newline at end of file'