├── Resource_Help.py ├── Info_Review_Deal.js ├── Info.html ├── Contact.html └── Resource.html /Resource_Help.py: -------------------------------------------------------------------------------- 1 | def foo(): 2 | return 'bar' 3 | print(foo()) -------------------------------------------------------------------------------- /Info_Review_Deal.js: -------------------------------------------------------------------------------- 1 | function foo() { return Math.random(); } console.log(foo()); -------------------------------------------------------------------------------- /Info.html: -------------------------------------------------------------------------------- 1 | Sample HTML

This is a commit.

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

This is a commit.

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

This is a commit.

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