### General Conventions In AVAP™, several general notation conventions are followed, similar to those used in other programming languages like Python. Some of these conventions include: * Indentation : Code is structured through indentation, using white spaces or tabs to indicate the hierarchy and structure of the code. It is recommended to use four spaces for each level of indentation. * Case Sensitivity : AVAP™ is case-sensitive, meaning that identifiers, variable names, and keywords must be consistently written using the same capitalization format throughout the code. * Comments : Comments are used to document the code and explain its functionality. Single-line comments begin with the `//` symbol, while multi-line comments start with `/*` and end with `*/` .