public class GoodFirstProgram
{
public static void main( String[] args )
{
[Link]( "Hello World!" );
[Link]( "Hello Again" );
[Link]( "I like typing this." );
[Link]( "This is fun." );
[Link]( "Yay! Printing." );
[Link]( "I'd much rather you 'not'." );
[Link]( "I \"said\" do not touch this." );
[Link]("SYSTEMUTVECKLARE-JAVA 2015");
}
}
Output:
C:\Android\chinwe\SJK2015>javac [Link]
C:\Android\chinwe\SJK2015>java GoodFirstProgram
Hello World!
Hello Again
I like typing this.
This is fun.
Yay! Printing.
I'd much rather you 'not'.
I "said" do not touch this.
SYSTEMUTVECKLARE-JAVA 2015
C:\Android\chinwe\SJK2015>