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 |
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 |
--------------------------------------------------------------------------------