|
Hello World !
|
View this Thread in Original format
| Durafei |
| Please read me !!!! |
|
|
| timmyboy |
dude youre going nuts with pointless posts today...
is it the april fool's thing or are you still drunk form last nite :) |
|
|
| loconet |
#include <stdio.h>
main()
{
printf("hello, world\n");
}
:toothless |
|
|
| Durafei |
| quote: | Originally posted by timmyboy
dude youre going nuts with pointless posts today...
is it the april fool's thing or are you still drunk form last nite :) |
a bit of both :D |
|
|
| Durafei |
| quote: | Originally posted by loconet
#include <stdio.h>
main()
{
printf("hello, world\n");
}
:toothless |
public class HelloWorld
{
{
System.out.println("Hello World");
}
public static void main(String args[])
{
;
}
}
|
|
|
| StereoPrincess |
| Ilyia has to get off the booze today! |
|
|
| mot10n |
java!!! no!!!! stay away!!! i am done with you!!!
AHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHH
*caught exception* |
|
|
| Durafei |
| quote: | Originally posted by mot10n
java!!! no!!!! stay away!!! i am done with you!!!
AHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHH
*caught exception* |
Aren't you in CS ?? You should love that stuff :D |
|
|
| mot10n |
| it's a love/hate relationship :p |
|
|
| Ortemy |
| quote: | Originally posted by Durafei
public class HelloWorld
{
{
System.out.println("Hello World");
}
public static void main(String args[])
{
;
}
}
|
is that gonna compile ?
EDIT: Actually i think it should, but what's the point of static loading? Aprils fools day? :conf:
;) |
|
|
| Slag |
| quote: | Originally posted by Ortemy
is that gonna compile ?
EDIT: Actually i think it should, but what's the point of static loading? Aprils fools day? :conf:
;) |
the syntax for the main method is always like that in java
This is the way it should look...
public class HelloWorld
{
public static void main(String args[])
{
System.out.println("Hello World");
}
}
|
|
|
| Ortemy |
| quote: | Originally posted by Slag
the syntax for the main method is always like that in java |
heh, thanks, i should know that after 4 years in CS :D
i was wondring more about semicoloumn inside it... nevermind, i am slow today : ) |
|
|
|
|