BashOOP/example/Object.shc

13 lines
196 B
Bash
Raw Normal View History

2021-12-27 23:44:16 +00:00
# Property declaration
property Object.name
# Optional constructor.
Object.constructor() {
Object.name = $1
}
# Example function
Object.print() {
echo "Example OOP from $(this.name)!"
}