summaryrefslogtreecommitdiff
path: root/tests/examplefiles/hello.at
blob: 23af2f2d5ad9f764c42058172e959b1cf5b8da37 (plain)
1
2
3
4
5
6
def me := object: {
    def name := "Kevin";
    def sayHello(peerName) {
        system.println(peerName + " says hello!");
    };
};