Hello World

Joined
Sep 30, 2023
Messages
3
Reaction score
4
Elite Coin
0
main( ) {
extern a, b, c;
putchar(a); putchar(b); putchar(c); putchar('!*n');
}

a 'hell';
b 'o, w';
c 'orld';
 
class HelloEliteCommunity
{
public static void Main()
{
System.Console.WriteLine("Hello, world!");
System.Console.ReadKey();
}
}
 

Users who are viewing this thread

Back
Top Bottom