Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improved README.md & Added some basic hello world! #3

Merged
merged 4 commits into from
Oct 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
115 changes: 88 additions & 27 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,50 +1,111 @@
# Hello World Program Repository
# Hello World Program Repository 🌍👋

Welcome to the **Hello World Program Repository**! This repository is a collection of "Hello World" programs written in various programming languages. The purpose of this project is to showcase the simplest code in different languages, help new learners, and give everyone an opportunity to contribute.
Welcome to the **Hello World Program Repository**! 🎉 This repository is a diverse collection of "Hello World" programs written in various programming languages. Our goal is to showcase the simplest code snippets, assist new learners, and create an inviting space for everyone to contribute. 🚀

## How to Contribute
## Table of Contents 📚
- [About This Project](#about-this-project)
- [How to Contribute](#how-to-contribute)
- [Example Contribution](#example-contribution)
- [Contribution Guidelines](#contribution-guidelines)
- [Coding Standards](#coding-standards)
- [Code of Conduct](#code-of-conduct)
- [License](#license)
- [Project Setup](#project-setup)
- [Frequently Asked Questions (FAQ)](#frequently-asked-questions-faq)
- [Follow Me? 🔔](#follow-me-)

Follow the steps below to contribute your "Hello World" program:
## About This Project 💡
This project is designed for developers of all skill levels! Whether you’re just starting out or are an experienced programmer, you can help expand our collection by contributing your unique "Hello World" implementation. Let's celebrate programming together! 🎊

## How to Contribute 🤝

Follow these simple steps to share your "Hello World" program:

1. **Choose a Language**
Pick any programming language that hasn't been added yet, or improve an existing one.
🌈 Select any programming language that hasnt been added yet or enhance an existing one.

2. **Create a New File**
- Name your file according to the language you're using.
For example:
- If you're writing in Python, name your file `hello_world.py`.
- If you're writing in JavaScript, name your file `hello_world.js`.
- If you're writing in Ruby, name your file `hello_world.rb`.
📝 Name your file according to the language youre using.
For example:
- If youre writing in **Python**, name your file `hello_world.py`.
- If youre writing in **JavaScript**, name your file `hello_world.js`.
- If youre writing in **Ruby**, name your file `hello_world.rb`.

3. **Write Your Code**
Write your own unique "Hello World" program. Make sure the program follows best practices for the chosen language and is easy to understand for beginners.
💻 Create your own unique "Hello World" program. Ensure it follows best practices and is beginner-friendly.

4. **Add Comments**
Briefly explain your code with comments, especially if the syntax is unique or the language is less known. This helps new learners grasp the concepts more easily.
✍️ Include comments that explain your code, particularly if the syntax is unique or the language is less known. This helps others understand your implementation.

5. **Submit a Pull Request**
Once you're done, submit a pull request with your code. Please provide a short description of the language and any important details about the implementation.

## Example
📬 Once you’re done, submit a pull request with your code. Please include a short description of the language and any important implementation details.

Here's an example of how to contribute:
## Example Contribution ✨
Here’s an example of how to contribute:

1. Create a file named `hello_world.py` if you're writing in Python.
1. Create a file named `hello_world.py` if youre writing in Python.
2. Write your code:
```python
# Python Hello World
print("Hello, World!")
3. Add comments to explain what the code does.
4. Submit your pull request.
```
3. Add comments to clarify the purpose of your code.
4. Submit your pull request! 🙌

## Contribution Guidelines
- Make sure the file extension matches the programming language you're using.
- Use clear and concise code, following best practices for your chosen language.
- Avoid submitting identical versions of "Hello World" programs that are already in the repository. Try to add something unique if possible.
- Keep the code simple and beginner-friendly.
## Contribution Guidelines 📋
- **File Naming**: Ensure your file extension matches the programming language youre using.
- **Code Clarity**: Use clear and concise code, adhering to best practices for your chosen language.
- **Originality**: Avoid submitting identical versions of existing "Hello World" programs in the repository. Aim to add something unique! 🌟
- **Beginner-Friendliness**: Keep your code simple and accessible for newcomers.

## Follow Me? 🔔
## Coding Standards ⚙️
- Follow the conventions of the programming language you are using (e.g., naming conventions, indentation).
- Prioritize readability and maintainability. Use meaningful variable names and consistent formatting.

## Code of Conduct 🤗
To foster a respectful and inclusive community, please adhere to the following principles:
- **Respect**: Treat all contributors with respect and kindness. ❤️
- **Encouragement**: Welcome new contributors and be open to constructive feedback. 👍
- **Zero Tolerance for Harassment**: Any form of harassment or discrimination will not be tolerated.

For a more detailed description of our community standards, please refer to the [Code of Conduct](#).

## License 📄
This project is licensed under the [MIT License](LICENSE). Feel free to use and modify the code in accordance with the terms of this license.

## Project Setup 🛠️
To get started with your local development environment, clone the repository using:

```bash
git clone https://github.com/yourusername/hello-world-program-repo.git
```

Following me on GitHub helps me approve your pull request faster and keeps you in the loop with other projects and contributions. 🚀
Then navigate into the directory:

```bash
cd hello-world-program-repo
```

### Running Your Code 🔄
- Make sure you have the required programming language environment set up (e.g., Python, Node.js, Ruby).
- Execute your "Hello World" program based on the language you used. For example, to run the Python code, use:

```bash
python hello_world.py
```

## Frequently Asked Questions (FAQ) ❓

**Q: What if my language isn't listed?**
A: Feel free to add a new language! Just follow the contribution steps outlined above. 🌍

**Q: Can I submit more than one "Hello World" program?**
A: Absolutely! We welcome multiple implementations, especially if they demonstrate different approaches or language features. ✨

**Q: How can I stay updated on contributions?**
A: Follow this repository on GitHub to receive notifications on new contributions and updates. 🔔

## Follow Me? 🔔
Following me on GitHub helps me approve your pull requests faster and keeps you informed about other projects and contributions. 🚀

### Hurrah!! 🎉 You’ve made your first contribution! Let’s continue contributing to open source and make this Hacktoberfest a success!
### Hurrah!! 🎉 You’ve made your first contribution! Let’s continue contributing to open source and make this Hacktoberfest a success! 🙌
7 changes: 7 additions & 0 deletions hello_world.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
package main

import "fmt"

func main() {
fmt.Println("Hello, World!")
}
1 change: 1 addition & 0 deletions hello_world.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
console.log("Hello, World!");
1 change: 1 addition & 0 deletions hello_world.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
print("Hello, World!")