BashOOP/example/Object.shc
2021-12-28 21:02:31 +01:00

13 lines
194 B
Bash

# Property declaration
property Object.name
# Optional constructor.
Object.constructor() {
this.name = $1
}
# Example function
Object.print() {
echo "Example OOP from $(this.name)!"
}