Jump to content

Hello world/Line printer: Difference between revisions

→‎{{header|Java}}: I'm just removing this. This wasn't even close, and it probably requires a little-used third party library anyway.
(→‎{{header|Java}}: I'm just removing this. This wasn't even close, and it probably requires a little-used third party library anyway.)
Line 54:
<lang j>require'print'
print'Hello world!'</lang>
 
=={{header|Java}}==
{{incorrect|Java|Outputs to stdout}}
 
<lang java>
public class HelloWorld {
public static void main(String[] args) {
System.out.println("Hello world!");
}
}
</lang>
 
=={{header|PHP}}==
Anonymous user
Cookies help us deliver our services. By using our services, you agree to our use of cookies.