Write a program to print "hello world " | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
- 1

Write a program to print "hello world "

7th Mar 2017, 1:45 AM
Nandan KR
8 Answers
+ 6
lmao
7th Mar 2017, 3:02 AM
Kawaii
Kawaii - avatar
+ 5
System.out.printIn("Hello World"); Java
25th Mar 2017, 1:19 AM
Cory Gutierrez🔹
Cory Gutierrez🔹 - avatar
+ 5
while if true if !false while false == 0 if true puts "Hello!" end end end end end end
30th Mar 2017, 10:43 AM
MrCoder
MrCoder - avatar
+ 4
x = [72, 101, 108, 108, 111, 32, 119, 111, 114, 108, 100] y = "" for i in x: y += chr(i) print(y)
30th Mar 2017, 3:49 PM
Supersebi3
Supersebi3 - avatar
+ 3
Alert("hellow world");
30th Mar 2017, 4:41 PM
Jomzkie
Jomzkie - avatar
+ 1
cout<<""hello world""; dude, seriously??
7th Mar 2017, 1:49 AM
Surya Vamsi
Surya Vamsi - avatar
0
<?PHP echo "Hello World!!"; ?> yes , I'm a complete developer 😂
7th Mar 2017, 5:25 AM
Vijay Ragav
Vijay Ragav - avatar
0
global _main extern _GetStdHandle@4 extern _WriteFile@20 extern _ExitProcess@4 section .text _main: ; DWORD bytes; mov ebp, esp sub esp, 4 ; hStdOut = GetstdHandle( STD_OUTPUT_HANDLE) push -11 call _GetStdHandle@4 mov ebx, eax ; WriteFile( hstdOut, message, length(message), &bytes, 0); push 0 lea eax, [ebp-4] push eax push (message_end - message) push message push ebx call _WriteFile@20 ; ExitProcess(0) push 0 call _ExitProcess@4 ; never here hlt message: db 'Hello, World', 10 message_end:
30th Mar 2017, 1:25 PM
Saqib Ali
Saqib Ali - avatar