"Dan Perl" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Actually, it can be as simple as: > public class test { > public static void main(String[] args) { > String c = new String("a string"+" another one"); > System.out.println(c); > } > }
I forgot. It can be even simpler: public class test { public static void main(String[] args) { System.out.println("a string"+" another one"); } } -- http://mail.python.org/mailman/listinfo/python-list