├── README.md ├── Pricing.js ├── Content_Style.js ├── FAQ_Tool_Guide.py ├── Guide.js ├── Map_Script.html ├── Review_Map.html └── Main_Tutorial.html /README.md: -------------------------------------------------------------------------------- 1 | # Welcome to my repository! -------------------------------------------------------------------------------- /Pricing.js: -------------------------------------------------------------------------------- 1 | console.log('Random JS commit'); -------------------------------------------------------------------------------- /Content_Style.js: -------------------------------------------------------------------------------- 1 | console.log('Random JS commit'); -------------------------------------------------------------------------------- /FAQ_Tool_Guide.py: -------------------------------------------------------------------------------- 1 | # Sample Python commit 2 | x = 42 3 | print(x) -------------------------------------------------------------------------------- /Guide.js: -------------------------------------------------------------------------------- 1 | function foo() { return Math.random(); } console.log(foo()); -------------------------------------------------------------------------------- /Map_Script.html: -------------------------------------------------------------------------------- 1 |

Hello, World!

-------------------------------------------------------------------------------- /Review_Map.html: -------------------------------------------------------------------------------- 1 |

Hello, World!

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

This is a commit.

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