|
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 file has been formatted with
GNU Source-highlight,
http://www.gnu.org/software/src-highlite
by Lorenzo Bettini
<bettini@gnu.org>
/*
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
*/
import java.io.* ;
public class Hello {
int foo = 1998 ;
int hex_foo = 0xCAFEBABE;
boolean b ;
Integer i = null ;
char c = '\'', d = 'n', e = '\\' ;
public static void main( String args[] ) {
// 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
}
}
|
This file was generated with the following command:
source-highlight -s cpp -f html -i cmdline.c -o cmdline.c.html --css="cpp2html.css" --header="./header.html" --footer="./footer.html"
and these are header.html and footer.html.
--header and --footer options are an idea of
Xavier Outhier <xouthier@yahoo.fr>, for an earlier version of Java2html (now GNU Source-highlight), http://www.gnu.org/software/src-highlite
|