├── hello world files ├── helloworld.bat ├── Hello world.rb ├── helloworld.m ├── Helloworld.json ├── Helloworld.pl ├── Helloworld.py ├── helloworld.ps1 ├── Hello world.css ├── Prakash.dart ├── helloworld.sh ├── helloworld.bf ├── hello-world.swift ├── HelloWorld.arnoldc ├── HelloWorld.kt ├── helloWorld.js ├── hello-world.go ├── helloworld.c ├── helloworld.f90 ├── Hello world.vb ├── Helloworld.cpp ├── HelloWorld.scala ├── hellowordl.hs ├── helloworld.cob ├── helloworld.java ├── HelloWorld.cs ├── helloworld.php ├── Hello.html ├── helloworld.html ├── hello_word.ino └── hello-world.html ├── LICENSE └── README.md /hello world files/helloworld.bat: -------------------------------------------------------------------------------- 1 | ECHO Hello World -------------------------------------------------------------------------------- /hello world files/Hello world.rb: -------------------------------------------------------------------------------- 1 | "Helloworld" 2 | -------------------------------------------------------------------------------- /hello world files/helloworld.m: -------------------------------------------------------------------------------- 1 | disp('Hello world') -------------------------------------------------------------------------------- /hello world files/Helloworld.json: -------------------------------------------------------------------------------- 1 | {"msg":"Item Helloworld"} -------------------------------------------------------------------------------- /hello world files/Helloworld.pl: -------------------------------------------------------------------------------- 1 | print "Hello, world! 2 | "; -------------------------------------------------------------------------------- /hello world files/Helloworld.py: -------------------------------------------------------------------------------- 1 | print('Hello, world!') 2 | -------------------------------------------------------------------------------- /hello world files/helloworld.ps1: -------------------------------------------------------------------------------- 1 | Write-Host 'Hello, World!' 2 | -------------------------------------------------------------------------------- /hello world files/Hello world.css: -------------------------------------------------------------------------------- 1 | body:before{ 2 | content: "Hello Word!"; 3 | } -------------------------------------------------------------------------------- /hello world files/Prakash.dart: -------------------------------------------------------------------------------- 1 | void main() 2 | { 3 | print('Hello, World!'); 4 | } 5 | -------------------------------------------------------------------------------- /hello world files/helloworld.sh: -------------------------------------------------------------------------------- 1 | // 2 | echo "Hello World" 3 | 4 | echo Hello World! 5 | -------------------------------------------------------------------------------- /hello world files/helloworld.bf: -------------------------------------------------------------------------------- 1 | +[-[<<[+[--->]-[<<<]]]>>>-]>-.---.>..>.<<<<-.<+.>>>>>.>.<<.<-. 2 | -------------------------------------------------------------------------------- /hello world files/hello-world.swift: -------------------------------------------------------------------------------- 1 | // Hello, World! Program 2 | import Swift 3 | print("Hello, World!") 4 | -------------------------------------------------------------------------------- /hello world files/HelloWorld.arnoldc: -------------------------------------------------------------------------------- 1 | IT'S SHOWTIME 2 | TALK TO THE HAND "Hello world" 3 | YOU HAVE BEEN TERMINATED 4 | -------------------------------------------------------------------------------- /hello world files/HelloWorld.kt: -------------------------------------------------------------------------------- 1 | 2 | // Hello World Program 3 | 4 | fun main() { 5 | println("Hello World!") 6 | } 7 | -------------------------------------------------------------------------------- /hello world files/helloWorld.js: -------------------------------------------------------------------------------- 1 | ReactDOM.render( 2 |

Hello, world!

, 3 | document.getElementById('root') 4 | ); 5 | -------------------------------------------------------------------------------- /hello world files/hello-world.go: -------------------------------------------------------------------------------- 1 | package main 2 | 3 | import "fmt" 4 | 5 | func main() { 6 | fmt.Println("hello world") 7 | } -------------------------------------------------------------------------------- /hello world files/helloworld.c: -------------------------------------------------------------------------------- 1 | 2 | #include 3 | int main() 4 | { 5 | printf("Hello World"); 6 | return 0; 7 | } 8 | 9 | -------------------------------------------------------------------------------- /hello world files/helloworld.f90: -------------------------------------------------------------------------------- 1 | ! helloworld.f90 2 | 3 | Program helloworld 4 | Print *, "Hello World" 5 | End Program helloworld 6 | -------------------------------------------------------------------------------- /hello world files/Hello world.vb: -------------------------------------------------------------------------------- 1 | Module Module1 2 | Sub Main() 3 | Console.WriteLine("Hello, world!") 4 | End Sub 5 | End Module -------------------------------------------------------------------------------- /hello world files/Helloworld.cpp: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | int main() { 4 | std::cout << "Hello World!"; 5 | return 0; 6 | } 7 | -------------------------------------------------------------------------------- /hello world files/HelloWorld.scala: -------------------------------------------------------------------------------- 1 | object HelloWorld { 2 | def main(args: Array[String]): Unit = { 3 | println("Hello, World!") 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /hello world files/hellowordl.hs: -------------------------------------------------------------------------------- 1 | -- compile: ghc helloworld.hs 2 | -- execute: ./helloworld 3 | -- Hello World in Haskell language 4 | 5 | main = putStrLn "Hello World" -------------------------------------------------------------------------------- /hello world files/helloworld.cob: -------------------------------------------------------------------------------- 1 | * simple hello world program 2 | PROCEDURE DIVISION. 3 | DISPLAY 'Hello world!'. 4 | STOP RUN. 5 | -------------------------------------------------------------------------------- /hello world files/helloworld.java: -------------------------------------------------------------------------------- 1 | // Your First Program 2 | 3 | class HelloWorld { 4 | public static void main(String[] args) { 5 | System.out.println("Hello, World!"); 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /hello world files/HelloWorld.cs: -------------------------------------------------------------------------------- 1 | //c# 2 | using System.IO; 3 | using System; 4 | 5 | class Program 6 | { 7 | static void Main() 8 | { 9 | Console.WriteLine("Hello World!"); 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /hello world files/helloworld.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Document 8 | 9 | 10 |

Hello World!!

11 | 12 | 13 | -------------------------------------------------------------------------------- /hello world files/helloworld.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Document 8 | 9 | 10 |

Hello World!!

11 | 12 | 13 | -------------------------------------------------------------------------------- /hello world files/hello_word.ino: -------------------------------------------------------------------------------- 1 | void setup() { 2 | // Open serial communications and wait for port to open: 3 | Serial.begin(9600); 4 | while (!Serial) { 5 | ; // wait for serial port to connect. Needed for Leonardo only 6 | } 7 | 8 | Serial.begin(9600); 9 | Serial.println("Hello, world?"); 10 | } 11 | 12 | void loop() { 13 | /**/ 14 | } 15 | -------------------------------------------------------------------------------- /hello world files/hello-world.html: -------------------------------------------------------------------------------- 1 | 13 | 14 | 15 | 16 | 17 | 18 | Hello World 19 | 20 | 21 |

Hello World!!!

22 | 23 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2020 CodeMacrocosm 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | 2 |
3 | 4 | # 🎯 "Start-a-Thon'20 💎: The Hello World " 👋 5 | 6 |
7 |

8 | 9 | GitHub stars 10 | 11 | 12 | GitHub forks 13 | 14 | 15 | GitHub contributors 16 | 17 | GitHub 18 |

19 | 20 |
21 | 22 | ## ✨ Hall Of Fame 23 | 24 | Thanks goes to these amazing people for their contributions 🎉🎉🎉 25 | 26 | 27 | 28 | 29 | 30 |
31 | 32 | ### Table of Contents 📚 33 | 34 | 1. [Overview](#overview) 35 | 2. [Languages Contributed](#-languages-contributed) 36 | 3. [How to Contribute?](#how-to-contribute) 37 | 4. [Star it](#how-to-star-) 38 | 5. [License](#-license) 39 | 6. [Thanks Contributors](#contributors-) 40 | 41 | --- 42 | 43 | 44 | 45 | ## Overview 46 | 47 | Welcome to the iconic "Hello, World!" program hosted by **Shruthi Kotawar and Shreya Malogi** to a whole new level by writing it in various programming languages! 🎉 In this repository, you'll find "Hello, World!" programs implemented in a diverse range of programming languages. From the classics like Java and Python to some quirky languages like ArnoldC and Brainfuck, we've got it all! It's a testament to the universality and versatility of coding. 💻 48 | 49 | ### 🐚 Languages Contributed: 50 | 51 | 52 | | Column 1 | Column 2 | Column 3 | Column 4 | 53 | | -------------- | ------------- | ------------- | -------------- | 54 | | ☕️ Java | 🎨 CSS | 💎 Ruby | 🌐 HTML | 55 | | 🤖 ArnoldC | #️⃣ C# | 🎯 Kotlin | 🐘 PHP | 56 | | 🧪 Scala | 🐍 Python | 💻 C++ | 📜 JavaScript | 57 | | 📋 JSON | 🐚 Perl | 🌟 Dart | 🐱 Golang | 58 | | 🌠 Swift | ⚛️ React (JavaScript) | 🌟 Arduino ESP8266 (C++) | λ Haskell | 59 | | 💼 Batch | 🧠 Brainfuck | 📊 C | 🖥️ COBOL | 60 | | 📊 Fortran | 🐚 Shell | 📊 MATLAB | ⚙️ PowerShell | 61 | 62 | 63 | 64 | 65 | 66 | ## How to Contribute 67 | 68 | 1. **Fork this Repository** 🍴 69 | 70 | Click the "Fork" button at the top right corner of this repository to create your personal fork. 71 | 72 | 2. **Clone Your Fork** 📥 73 | 74 | ```bash 75 | git clone https://github.com/codemacrocosm/Start-a-Thon.git 76 | ``` 77 | 78 | 3. **Add Your "Hello, World!" Program**:In the `hello word files` folder, Create a new file with the naming convention `HelloWorld.`, where `` is the file type (e.g., `.java`, `.py`, `.cpp`, etc.). Implement your "Hello, World!" program in your chosen programming language. 79 | 80 | 4. **Commit and Push**: Commit your changes with a meaningful message and push them to your forked repository. 81 | 82 | 5. **Create a Pull Request (PR)**: Go to the original repository, click on "Pull Requests," and create a new PR. We'll review your contribution, and once it's approved, your "Hello, World!" program will be added to this repository. 83 | 84 | ## How to Star ⭐ 85 | 86 | If you enjoy the patterns or find them inspiring, don't forget to ⭐ the repository! Your support is appreciated. 87 | 88 | ## 📄 License 89 | 90 | This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details. 📜 91 | 92 | MIT License 93 | 94 | Copyright (c) 2020 CodeMacrocosm 95 | 96 | 97 | ### Contributors 🙌 98 | 99 | A big thanks to all the creative minds who have contributed. Now, let the creation begin! Happy coding! 🎨✨ 100 | 101 | Join us in celebrating the art of coding by contributing to this multilingual "Hello, World!" collection. It's a fun way to express your creativity and connect with fellow programmers from around the world. 102 | 103 | Happy Coding! 👩‍💻👨‍💻🌎🎈 104 | 105 | --------------------------------------------------------------------------------