Hello World
Introduction#
This is a test page that will not be up for a long time. The intention is just to ensure the website works and the post renders well.
How to know?#
It’s simple and easy. Just deploy the website and if everything works fine, means everything is working as expected. Otherwise, it’s not :-D
Another approach is to get the source code of the page in browser and go through it to see whether everything is in place. Actually it’s a matter of trial and error at the end of the day.
Custom code#
Let’s write a simple C program here, in drop down:
Really cool snippet
#include <stdio.h>
#include <stdlib.h>
int main(int argc, char* argv[])
{
printf("Hello World\n");
return 0;
}The same code in one shot:
#include <stdio.h>
#include <stdlib.h>
int main(int argc, char* argv[])
{
printf("Hello World\n");
return 0;
}
And now some Java code:
public class Test {
public static void main(String args[]) {
System.out.println("Helo World");
}
}
And complete it with a picture:

Read other posts