"Hello, world!" is a pointless, simple program which simply prints the words "Hello, world!" to the screen, followed by a carriage return. Please write this program in each of the languages listed below. Your code should be as simple as possible (i.e. if you intentionally obfuscate it to the point where we have to try it on a compiler, YOU WON'T GET CREDIT), and further, must demonstrate good programming technique through the use of a comment describing its function. For example, this is the program "Hello, world!" in C:
/* Program "Hello, world!": prints the string "Hello, world!" to the standard output */
#include
void main ()
{
print f ("Hello, world! \n") ;
}
Write an equivalent program in: