CHALLENGE 2:"HELLO WORLD! " | Sololearn: Learn to code for FREE!
+ 2

CHALLENGE 2:"HELLO WORLD! "

You should write on your own pr language "HELLO WORLD from......! " (your city or country).

12th Sep 2017, 7:03 AM
Otabek
Otabek - avatar
8 odpowiedzi
+ 15
<p>Hello, World! from India.🇮🇳 puts "Hello, World! from India. 🇮🇳" console.log("Hello, World! from India.🇮🇳")
12th Sep 2017, 7:07 AM
Lord Krishna
Lord Krishna - avatar
+ 4
Boi it is today's daily challenge
12th Sep 2017, 7:05 AM
👑 Prometheus 🇸🇬
👑 Prometheus 🇸🇬 - avatar
+ 4
print("Hello from Singapore!")
12th Sep 2017, 7:08 AM
👑 Prometheus 🇸🇬
👑 Prometheus 🇸🇬 - avatar
+ 2
cout <<"HELLO WORLD FROM ALMATY, KAZAKHSTAN! ";
12th Sep 2017, 7:04 AM
Otabek
Otabek - avatar
+ 2
what do you mean "our own programming language" ?? it's globally english , no specific country with specific language..
12th Sep 2017, 7:05 AM
Mikhael Anthony
Mikhael Anthony - avatar
+ 2
I mean in which language you work. for example c++or java, python...
12th Sep 2017, 7:07 AM
Otabek
Otabek - avatar
+ 1
I work with Java, Python, C++ and COBOL so far so I'll answer for those 4, including all required set up code. Java: public class Hello { public static void main(String[] args) { System.out.print("Hello world from America!"); } } C++: #include <iostream> using namespace std; int main() { cout << "Hello world from America!" << endl; } Python: 2.x - print "Hello world from America!" 3.x - print("Hello world from America!") COBOL: Identification Division. program-ID. Hello. Data Division. working-storage section. 01 HELLO_WORLD Pic x(25) Value "Hello world from America!". Procedure Division. 100-MAIN-MODULE. Display HELLO_WORLD goback. If you want to learn more about COBOL I can explain the very basics on how the setup works. If you've worked with COBOL I have a discussion open that you can find on my account page that I want SoloLearn to notice to possibly get COBOL on SL's roster.
12th Sep 2017, 9:29 AM
Vari93
Vari93 - avatar
0
System.out.println("hello world" + " سڵاو جیهان");
12th Sep 2017, 7:53 PM
Brya Mk
Brya Mk - avatar