Comments ======== Single-line comments are introduced with the ``#`` character. Everything from ``#`` to the end of the line is ignored by the AQL parser. **Example:** .. code-block:: aql # Run with: arcc run examples/demo.aql # Get all rows get * from Names; # Get only the first 2 rows get head(2) from Names;