Fido,
A hint in Oracle is a kind of 'special comment'. If you're using the syntax exactly as you've entered it above Oracle will be paying attention to you.
You can confirm this by using PL/SQL Developer's Explain Plan. Type your SQL in a new Explain Plan window and execute (F5).
The first line in the explain plan description should include some text to prove your hint has been considered. You may need to stretch the first field to see it all, but it will look something like:
SELECT STATEMENT, GOAL = HINT: FIRST_ROWS
Hope this helps.
John
P.S. It is very important to not put a space between the * and + of your hint. /* +FIRST_ROWS for example will NOT work!