Comments

Character # denotes a comment until the end of the line.

PRQL

from employees  # Comment 1
# Comment 2
aggregate {average salary}

SQL

SELECT
  AVG(salary)
FROM
  employees

There’s no distinct multiline comment syntax.