├── 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 |
This is a commit.
-------------------------------------------------------------------------------- /Profile.html: -------------------------------------------------------------------------------- 1 |This is a commit.
--------------------------------------------------------------------------------