BashOOP/example/Object.shc
2021-12-28 00:44:16 +01:00

13 lines
196 B
Bash

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