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

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

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 - 2025 Weber Informatics LLC | Privacy Policy