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.
For those who like a challenge and want to make larger contributions, you can create an API in a supported or unsupported programming language. You work in the apis folder and add the programming language to the list of supported programming languages, then add API at the end (e.g. Python: Basic, API).
A | B | C | D | E | F | G | H | I | J | K | L | M | N | O | P | Q | R | S | T | U | V | W | X | Y | Z
- ABAP - SAP community
- Ada - Ada-lang
- ALGOL 68 - ALGOL 68 Genie
- Applescript - Applescript-lang
- Assembly - Assembly Language
- AutoIt - AutoIt
- Azle - Demergent Labs
- BASIC - Classic BASIC
- Bash - GNU Bash
- Batch - Windows Batch
- Bhailang - Bhailang.js.org
- Bicep - Bicep Language
- boo - Boo
- Brainfuck - Brainfuck.org
- C - GNU C Manual
- C++ - isocpp.org
- C# - Microsoft C#
- Cangjie - Cangjie-lang
- Carbon - Carbon
- Cairo - Cairo-lang.org
- Chapel - Chapel-lang.org
- Clojure - Clojure.org
- CLIPS - CLIPS Rule Language
- COBOL - IBM COBOL
- Coffeescript - Coffeescript.org
- COOL - Classroom Object-Oriented Language
- Crystal - CrystalKnows.com
- cypher - Cypher (query language)
- D - D-lang.org
- Dart - Dart.dev
- Daytona - Daytona.io
- Dylan - OpenDylan.org
- Factor - Factorcode.org
- Falcon - Falcon-lang.org
- F# - Fsharp.org
- forth - Forth-standard.org
- Fortran - Fortran-lang.org
- Futhark - Futhark-lang.org
- Hack - The official site for the Hack programming language
- Haskell - Haskell.org
- Haxe - Haxe.org
- HolyC - HolyC.com
- HTML - HTML Specification
- J - Jsoftware.com
- Janet - Janet-lang
- Java - Oracle Java
- Javascript - MDN Web Docs
- Julia - JuliaLang.org
- K - Kx.com
- Kotlin - Kotlinlang.org
- MATLAB - MathWorks
- Mercury - Mercurylang.org
- Miranda - Miranda
- Modula-2 - Modula-2.info
- Motoko - Internet Computer
- Pascal - FreePascal.org
- Perl - Perl.org
- PHP - PHP.net
- Pike - Pike.lysator.liu.se
- Plug - PlugLanguage.org
- Pony - Pony
- PostScript - PostScript
- PowerShell - Microsoft PowerShell
- Prolog - GNU Prolog
- Pug - Pug-lang
- Python - Python.org
- R - R-project.org
- Racket - Racket-lang.org
- Red - red-lang.org
- Ruby - Ruby-lang.org
- Rust - Rust-lang.org
- SAS -SAS
- Scala - Scala-lang.org
- Scheme - Scheme.org
- Smalltalk - Squeak.org
- SNOBOL - SNOBOL4
- Soroban - Stellar Developers
- SQL - ISO SQL
- Swift - Swift.org
- V - V-lang.io
- Vala - Vala-lang
- VBScript - Microsoft VBScript
- VIM - Vim-lang
- VisualBasic - Microsoft Visual Basic
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.