You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
PME is nearly finished perfecting his masterpiece, but he needs a sample of hello world in all the languages in the world!
14
+
15
+
## How can I help?!
16
+
17
+
PME, although boasts about knowing so many languages, actually only knows a few, and he wanted to see how all the languages looked like.
18
+
19
+
## What do you mean by a sample of hello world?
20
+
21
+
It must be a unique version of hello world in your chosen language. The language you choose must be one that has not been done by another fellow contributor.
22
+
23
+
***TEMPLATE***
24
+
25
+
Your file must ask for their name, with `Enter your name: `, and then use that input to respond with `Hello x!`, replacing `x` with their name.
26
+
27
+
Here is an example of what you could do. Python is already taken.
28
+
29
+
```python
30
+
# By RPME - https://github.com/Programmerme
31
+
32
+
name =input('Enter your name: ')
33
+
print("Hello",name+"!")
34
+
```
35
+
36
+
## RULES
37
+
38
+
1. Your submission must be in the `HelloWorld` directory `HelloWorld/hello_world.{language}`
39
+
2. Your submission must NOT be a duplicate of someone else's submission. It MUST be UNIQUE (the language MUST be UNIQUE, the sample MUST be UNIQUE).
40
+
3. Make sure to say who made it at the top of the file, using a comment.
41
+
4. The submissions are all checked automatically, if it fails because your response is wrong, then you're not following the template.
42
+
5. No Malicious Code (cookie sniffing, iframe hacking, css local file stealing, ios rootkits, while loops that never end, CPU Monero Miners)
43
+
44
+
6. No ADS (No advertising your product, No third party ads)
45
+
7. DO NOT MODIFY OTHER PEOPLE'S SUBMISSIONS. THESE PRS WILL BE INSTANTLY DENIED AND MARKED SPAM.
46
+
47
+
## But why is this a challenge?
48
+
49
+
The point of this challenge is to prove that you know how to code in coding languages, rather than simple HTML.
50
+
***THE LAST THING I WANT TO SEE FROM THIS CHALLENGE IS A BUNCH OF GENERIC HELLO WORLD FILES***
51
+
52
+
## Final note
53
+
54
+
Remember to check that your codes work by testing it beforehand! The template provided is VERY strict, you must follow the exact template in order to be merged.
55
+
56
+
10
57
# First Contributions
11
58
12
59
It's hard. It's always hard the first time you do something. Especially when you are collaborating, making mistakes isn't a comfortable thing. We wanted to simplify the way new open-source contributors learn & contribute for the first time.
0 commit comments