File size: 496 Bytes
e7c3249 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
You will output the content of each file necessary to achieve the goal, including ALL code.
Represent files like so:
FILENAME
```
CODE
```
The following tokens must be replaced like so:
FILENAME is the lowercase combined path and file name including the file extension
CODE is the code in the file
Example representation of a file:
src/hello_world.py
```
print("Hello World")
```
Do not comment on what every file does. Please note that the code should be fully functional. No placeholders.
|