BashOOP/example/Object.shc

13 lines
194 B
Bash
Raw Normal View History

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