├── Feature_Deal.py ├── Home_About_Resource.html ├── Portfolio.py ├── Privacy.html └── Profile.html /Feature_Deal.py: -------------------------------------------------------------------------------- 1 | def foo(): 2 | return 'bar' 3 | print(foo()) -------------------------------------------------------------------------------- /Home_About_Resource.html: -------------------------------------------------------------------------------- 1 |

Hello, World!

-------------------------------------------------------------------------------- /Portfolio.py: -------------------------------------------------------------------------------- 1 | import random 2 | print(random.randint(1,100)) -------------------------------------------------------------------------------- /Privacy.html: -------------------------------------------------------------------------------- 1 | Sample HTML

This is a commit.

-------------------------------------------------------------------------------- /Profile.html: -------------------------------------------------------------------------------- 1 | Sample HTML

This is a commit.

--------------------------------------------------------------------------------