samples.categories.methods.getter.pec Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of WebSite Show documentation
Show all versions of WebSite Show documentation
Prompto Documentation Web Site POM
define firstName as Text attribute
define lastName as Text attribute
define fullName as Text attribute
define Person as category with attributes firstName, lastName and fullName, and methods:
define fullName as getter doing:
return firstName + " " + lastName
define main as method doing:
p = Person with "Arthur" as firstName and "Rimbaud" as lastName
printLine "fullName -> " + p.fullName
© 2015 - 2024 Weber Informatics LLC | Privacy Policy