All pastes #688702 Raw Edit

Welcome1

public java v1 · immutable
#688702 ·published 2007-09-09 15:48 UTC
rendered paste body
// Fig. 2.1: Welcome1.java// Text-printing program.public class Welcome1  {   // main method begins execution of Java application   public static void main( String args[] )   {      System.out.println( "Welcome to Java Programming!" );   } // end method main} // end class Welcome1