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

samples.enumerations.attributes.pec Maven / Gradle / Ivy

There is a newer version: 0.0.74
Show newest version
define motor as Boolean attribute
define seats as Integer attribute
define Vehicle as enumerated category with attributes motor and seats, and symbols:
    BICYCLE with false as motor and 1 as seats
    MOTORBIKE with true as motor and 2 as seats
    CAR with true as motor and 4 as seats

define main as method doing:
    printLine "BICYCLE.name -> " + BICYCLE.name
    printLine "Vehicle.symbols -> " + Vehicle.symbols




© 2015 - 2024 Weber Informatics LLC | Privacy Policy