UNPKG

firescript

Version:
13 lines (11 loc) 178 B
// simple class example class Banana { constructor () { // set color this.color = 'yellow'; } getColor () { /* retunr the shit */ return this.color; } }