Firebird supports two types of comments: block and in-line.
Block comments start with the character pair and end with the */
character pair. Text in block comments may be of any length and can occupy multiple lines.
Example
CREATE PROCEDURE P(APARAM INT)
BEGIN
/* This text will be ignored during the execution of the statement
*/
B = A + 1; -- In-line comment