In this section you will use content assist to finish writing a new method. Open the
file as_environment_manager.magik in Magik editor if you do not already have it open
and select example() method in the Outline view. If the file does not contain such a
method see Adding new methods for instructions on how to add this
method.
_method as_environment_manager.example(var1, var2)
vars << rope.new()
var
_endmethod
var, press Ctrl+Space to
activate content assist. The content assist window with a list of proposals will appear. Scroll the
list to see available choices.
vars local variable and press Enter. The name for vars
variable is inserted.vars type ".". Content assist window will activate
automatically. In class field type ^rope$ to list all methods available for exemplar rope.
Single-click various items in the list to view any available help for each item.

add() from the list and press Enter. The code for the add(thing)
method is inserted. vars.add(var1)

