Just a small issue with how you insert a ^ (caret, wedge, circumflex, arrow, hat, what have you), / (forward slash), or * (star, asterisk) as a literal in a comment in Maple.
In regular code, it works fine;
Typing \_ produces _
Typing \^ produces ^
Typing \/ produces /
Typing \* produces *
In a comment, only underscores work as expected. The caret, asterisk and slash leave behind the escaping backslash, which you will have to go back and delete yourself.