package testcode; /** * Test for translation to python.
* Extra line for multiline-test. */ public class HelloWorld { // check static private static String username = "Jan", lastname = "Coens"; // multivar /** * * @param args the arguments of the call. */ static public void main(String[] args) { // simple print System.out.println("Hello " + username + "!"); /* * Some block comment to test this type of comment too */ } }