Project 1999

Project 1999 (/forums/index.php)
-   Blue Server Chat (/forums/forumdisplay.php?f=17)
-   -   Hello World (/forums/showthread.php?t=24938)

Arshis 01-06-2011 02:05 PM

Hello World
 
New player here just wanting to say hello. I'm very excited to be here, I really miss this old game and thanks to the staff at project 1999 for making it possible.

Ihealyou 01-06-2011 02:12 PM

10 PRINT "Hello World"
20 GOTO 10


but hi!

hedbonker 01-06-2011 02:29 PM

#include stdio.h

main()
{
printf("Hello World");
}

Welcome to P99 :)

Chanus 01-06-2011 02:31 PM

public static void main (String args[])
{

System.out.println("Hello Wrlod!");

}


Damnit!

nalkin 01-06-2011 02:40 PM

while True:
print( "hello world" )

mgellan 01-06-2011 02:43 PM

http://upload.wikimedia.org/math/b/d...b318d2ba28.png
http://upload.wikimedia.org/math/1/6...a2851ad16a.png
http://upload.wikimedia.org/math/f/e...b803cd4936.png

Regards,
Mg

Ihealyou 01-06-2011 02:48 PM

dosseg
.model small
.stack 100h

.data
hello_message db 'Hello, World!',0dh,0ah,'$'

.code
main proc
mov ax,@data
mov ds,ax

mov ah,9
mov dx,offset hello_message
int 21h

mov ax,4C00h
int 21h
main endp
end main

Fourthmeal 01-06-2011 02:52 PM

think outside the bun

Estu 01-06-2011 04:04 PM

#include <iostream>

using namespace std;

int main(int argc, const char* argv[])
{
cout << "Hello World!" << endl;
return 0;
}

nilbog 01-06-2011 04:09 PM

Welcome,

Code:

  Private Sub Command1_Click()
      MsgBox "Hello, World!"
      End Sub



All times are GMT -4. The time now is 07:49 AM.

Powered by vBulletin®
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.