Jump to content

Template:Java

From Wikibooks, open books for an open world


This template can be used to display Java code with syntax highlighting and a nice looking frame.

{{java|code=}} 

Example

[edit source]
{{java|code= for(int i=0; i<10; i++) { System.out.println("Hello!"); } }} 

renders as

Computer code
for(int i=0; i<10; i++) {  System.out.println("Hello!"); }