"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
content="text/html; charset=iso-8859-1" />
by Lorenzo Bettini, bettini@gnu.org
http://www.lorenzobettini.it
http://www.gnu.org/software/src-highlite" />
/* This is a classical Hello program to test source-highlight with Java programs. to have an html translation type source-highlight -s java -f html --input Hello.java --output Hello.html source-highlight -s java -f html < Hello.java > Hello.html or type source-highlight --help for the list of options written by Lorenzo Bettini <bettini@gnu.org> http://www.lorenzobettini.it http://www.gnu.org/software/src-highlite*/importjava.io.*;publicclassHello{intfoo=1998;inthex_foo=0xCAFEBABE;booleanb;Integeri=null;charc='\'',d='n',e='\\';publicstaticvoidmain(Stringargs[]){// just some greetings ;-) /*System.out.println("Hello from java2html :-)");System.out.println("\tby Lorenzo Bettini");System.out.println("\tbettini@gnu.org");//System.out.println( "bye bye... :-D" ) ; // see you soon}}