/*
  This is a classical Hello program
  to test java2html.

  to have an html translation type

  java2html Hello.java Hello.html

  Lorenzo Bettini
  lorenzo.bettini@penteres.it
 */

import java.io.* ;

public class Hello {
    int foo = 1998 ;
    boolean b ;

    public static void main( String args[] ) {
	// just some greetings ;-)
	System.out.println( "Hello from java2html :-)" ) ;
	System.out.println( "by Lorenzo Bettini" ) ;
	System.out.println( "lorenzo.bettini@penteres.it" ) ;
    }
}