22. MyFirst.java

/* This is my first java program
purpose: to demostrate simple program structure
Author: "Insert Name"
*/
import java.io.*;
class MyFirst
{
public static void main(String[] args)
{
/*print something to the output screen */
System.out.println("Hello Birds, Hello Sky!!");
}
}