├── README.md └── hello_world.py /README.md: -------------------------------------------------------------------------------- 1 | **Basic app** 2 | 3 | This is a basic Git Repo 4 | -------------------------------------------------------------------------------- /hello_world.py: -------------------------------------------------------------------------------- 1 | print('Hello, World!') 2 | 3 | print('inside dev') 4 | 5 | print('changing this line in dev') 6 | --------------------------------------------------------------------------------