├── FAQ_Offer_Footer.html ├── Help_Footer.js ├── Main.py ├── Map.html ├── Map_Info_Plan.py ├── Portfolio.py └── Search_Event.py /FAQ_Offer_Footer.html: -------------------------------------------------------------------------------- 1 | Sample HTML

This is a commit.

-------------------------------------------------------------------------------- /Help_Footer.js: -------------------------------------------------------------------------------- 1 | function foo() { return Math.random(); } console.log(foo()); -------------------------------------------------------------------------------- /Main.py: -------------------------------------------------------------------------------- 1 | import random 2 | print(random.randint(1,100)) -------------------------------------------------------------------------------- /Map.html: -------------------------------------------------------------------------------- 1 | Sample HTML

This is a commit.

-------------------------------------------------------------------------------- /Map_Info_Plan.py: -------------------------------------------------------------------------------- 1 | def foo(): 2 | return 'bar' 3 | print(foo()) -------------------------------------------------------------------------------- /Portfolio.py: -------------------------------------------------------------------------------- 1 | import random 2 | print(random.randint(1,100)) -------------------------------------------------------------------------------- /Search_Event.py: -------------------------------------------------------------------------------- 1 | # Sample Python commit 2 | x = 42 3 | print(x) --------------------------------------------------------------------------------