Error in "Getting Started Guide 5", pg. 344

LibreOffice,
     The macro shown in Listing 2 won't display "Hello" because
HelloMacro is not called. The correct listing should be:

REM ***** BASIC *****

Sub HelloMacro
    Print "Hello"
End Sub

Sub Main
    HelloMacro
End Sub

     Also, may I suggest a little re-organization of the Macro chapter?
The chapter starts with creating a macro, then jumps to recording one,
then back to creating one. My suggestion is to cover the basics of
recording a macro, then move to creating a more complex macro using the
IDE. Just a thought.

Dennis,