Method

Declares a function that belongs to a Type

Keywords

Parameters & Returns

Parameters

This function takes no parameters.

Returns

Void

Quick Summary

Declares a function that belongs to a Type

Technical Exegesis...

Declares a function that belongs to a Type. Syntax is Method Name(params):ReturnType. Methods are functions associated with a Type that can access the Type's fields using the 'this' keyword. Methods define the behavior/operations for objects. Must be closed with EndMethod. Declared inside a Type...EndType block.

Example

Example.bam
; No example implemented yet