As it is common when learning a new programming language to write a “Hello, World” program, here is that Hallowelt for my first blogpost.
#include <stdio.h>
int main() {
printf("Hello World\n");
return 0;
}
public class HelloWorld
{
public static void main (String[] args)
{
System.out.println("Hello World");
}
}