- 1
Write a program to print "hello world "
8 Answers
+ 6
lmao
+ 5
System.out.printIn("Hello World");
Java
+ 5
while if true
if !false
while false == 0
if true
puts "Hello!"
end
end
end
end
end
end
+ 4
x = [72, 101, 108, 108, 111, 32, 119, 111, 114, 108, 100]
y = ""
for i in x:
y += chr(i)
print(y)
+ 3
Alert("hellow world");
+ 1
cout<<""hello world"";
dude, seriously??
0
<?PHP
echo "Hello World!!";
?>
yes , I'm a complete developer đ
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: