# Parsing Code This folder holds the code for the parser, split across multiple files: - Binary operators: [binops.c](binops.c) - Container datatype literals: [containers.c](containers.c) - Control flow: [controlflow.c](controlflow.c) - Expressions: [expressions.c](expressions.c) - File parsing: [files.c](files.c) - Functions: [functions.c](functions.c) - Numbers/integers: [numbers.c](numbers.c) - Statements: [statements.c](statements.c) - Suffix parsing rules: [suffixes.c](suffixes.c) - Text: [text.c](text.c) - User type definitions: [typedefs.c](typedefs.c) - Type annotations: [types.c](types.c) - Utility functions: [utils.c](utils.c)