Hello world is an Open Source project for programming beginners. It consists in providing a program that returns the “Hello World” message in the programming language you know.
- Python
- Javascript
- Solidity
- C
- C++
- C#
- PHP
- Assembly
- HTML
- Dart
- COBOL
- JAVA
- typescript
- Kotlin
- Rust
- Fortran
The "Hello World" project is a common first step for beginners learning a new programming language. This repository gathers implementations of the "Hello World" message in multiple languages to demonstrate different syntax and language features.
- Clone the repository:
git clone https://github.com/agnilondapakou/helloWorld.git
- Navigate to the directory of the language you wish to try.
To run a "Hello World" program:
- Navigate to the specific language folder.
- Run the code using the appropriate compiler or interpreter.
Example in Python:
python hello.py
Contributions are encouraged! Follow these steps to contribute:
- Fork the repository: Click the "Fork" button at the top of this page to create a copy of this repo under your GitHub account.
- Clone your fork:
git clone https://github.com/agnilondapakou/helloWorld.git cd helloWorld
- Create a new branch:
git checkout -b add-language-<language-name>
- Add your "Hello World" program: Add a folder for your language (if not present) and include your program file inside it.
- Commit your changes:
git add . git commit -m "Added Hello World in <language>"
- Push to your fork:
git push origin add-language-<language-name>
- Create a Pull Request: Go to your fork on GitHub and click the "Compare & pull request" button to submit your changes.
Please ensure that your code adheres to the formatting conventions for the language. Check the CONTRIBUTING.md for more detailed guidelines.
- Collection of "Hello World" programs in various programming languages.
- Great resource for beginners to compare basic syntax across languages.
This project is licensed under the MIT License - see the LICENSE file for details.