For previous challenges, please look at readmes.
This is part of a series of weekly projects that will be in this repository over the span of hacktoberfest. this is satire, it's meant to be cute and to see what potential PRs have (both during hacktoberfest and otherwise)
Raid is nearly finished perfecting his masterpiece, but he needs a sample of hello world in all the languages in the world!
Raid, although boasts about knowing so many languages, actually only knows a few, and he wanted to see how all the languages looked like.
It must be a command line hello world in your chosen language. The language you choose must not have already been chosen!
TEMPLATE
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.
Here is an example of what you could do. Python is already taken.
# By RaidAndFade - https://github.com/RaidAndFade
name = input('Enter your name: ')
print("Hello",name+"!")
- Your submission must be in the
HelloWorld
directoryHelloWorld/hello_world.{language}
- 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).
- Make sure to say who made it at the top of the file, using a comment.
- The submissions are all checked automatically, if it fails because your response is wrong, then you're not following the template.
- No Malicious Code (cookie sniffing, iframe hacking, css local file stealing, ios rootkits, while loops that never end, CPU Monero Miners)
- No NSFW (porn, nudes, pictures of your cat's testicles, severed heads)
- No ADS (No advertising your product, No third party ads)
- DO NOT MODIFY OTHER PEOPLE'S SUBMISSIONS. THESE PRS WILL BE INSTANTLY DENIED AND MARKED SPAM.
The point of this challenge is to show the insane variety of languages that nobody knows about. Cool huh?
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.