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

samples.categories.extend-usage.pec Maven / Gradle / Ivy

There is a newer version: 0.0.74
Show newest version
define fullName as Text attribute
define Person as category with attribute fullName

define company as Text attribute
define Employee as Person with attribute company

define printPerson as method receiving Person p doing:
    printLine "p -> " + p

define main as method doing:
    e = Employee with "Sally" as fullName and "The world" as company
    printPerson e




© 2015 - 2024 Weber Informatics LLC | Privacy Policy