END
END
This keyword indicates the end of a procedure or a function.
In Visual Basic, the
End
command closes all forms and files and terminates the program.
In Gambas, END is more like
End Function
combined with
End Sub
: it closes the definition of a subroutine. For the functionality of VB's End command, use
QUIT or better yet, close all open windows and terminate all child processes.
See also