Class Template - shmolyneaux/SquareJam GitHub Wiki

CLASS inherits from PARENT_CLASS. It is the parent class of CHILD_CLASS, CHILD_CLASS, ... and CHILD_CLASS.

The class contains the following members:

  • member_1
  • __member_2__

It also contains the following methods:

  • __foo__
  • bar

Members

member_1 is the first member

__member_2__ is another member

Methods

_foo_( name )

  • example method that is passed name as an argument.

bar( attr, parameter=default_value )

  • method that has a default method.