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

samples.categories.methods.arguments-implicit.pec Maven / Gradle / Ivy

The newest version!
define country as Text attribute
define City as category with attributes name and country

define Person as category with attribute name, and methods:

    define printVisit as method receiving country doing:
        printLine name + " has visited " + country

define main as method doing:
    city = City with "Bombay" as name and "India" as country
    person = Person with "Edgar" as name
    person.printVisit city




© 2015 - 2025 Weber Informatics LLC | Privacy Policy