Oxygen

method
ACTION: define a method. (a function or sub for objects)
EXAMPLE:
method triple(i as int) as int
return i*3
end method

RELATED: procedures function sub