All Downloads are FREE. Search and download functionalities are using the official Maven repository.

samples.expressions.method.pec Maven / Gradle / Ivy

There is a newer version: 0.0.74
Show newest version
define myProto as abstract method receiving Text prefix returning Text
            
define printResultOfMyProto as method receiving myProto doing:
    s = myProto with "Hello" as prefix
    printLine s

define myMethod as method receiving Text prefix returning Text doing:
    return prefix + " John"

define main as method doing:
    m = Method: myMethod
    printResultOfMyProto with m as myProto




© 2015 - 2024 Weber Informatics LLC | Privacy Policy