├── README.md ├── Resource.js ├── Article.py ├── Blog.py ├── Review.html ├── Service_About_Article.js └── Profile.html /README.md: -------------------------------------------------------------------------------- 1 | # Welcome to my repository! -------------------------------------------------------------------------------- /Resource.js: -------------------------------------------------------------------------------- 1 | console.log('Random JS commit'); -------------------------------------------------------------------------------- /Article.py: -------------------------------------------------------------------------------- 1 | def foo(): 2 | return 'bar' 3 | print(foo()) -------------------------------------------------------------------------------- /Blog.py: -------------------------------------------------------------------------------- 1 | def foo(): 2 | return 'bar' 3 | print(foo()) -------------------------------------------------------------------------------- /Review.html: -------------------------------------------------------------------------------- 1 |

Hello, World!

-------------------------------------------------------------------------------- /Service_About_Article.js: -------------------------------------------------------------------------------- 1 | function foo() { return Math.random(); } console.log(foo()); -------------------------------------------------------------------------------- /Profile.html: -------------------------------------------------------------------------------- 1 | Sample HTML

This is a commit.

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