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

samples.categories.copy-enrich.pec Maven / Gradle / Ivy

There is a newer version: 0.0.74
Show newest version
define dateOfBirth as Date attribute
define Candidate as category with attributes name and dateOfBirth
define grade as Text attribute
define Employee as category with attributes name, dateOfBirth and grade

define main as method doing:
    john = Candidate with "John" as name and '1993-10-20' as dateOfBirth
    new_joiner = Employee from john with "manager" as grade
    printLine new_joiner




© 2015 - 2024 Weber Informatics LLC | Privacy Policy