[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [computer-go] GTP and KGS




Peter Drake wrote:

Any clues as to what the problem is? GoGui is happy with this response to the name command.
Are you using System.out.print() or something else?  I ask because
System.out.print() _flushes_ its output, whereas something else might not.

If you put the following code into a file called "foo.java", does it compile?

If it does compile, what happens when you run it?

public class foo {
private static char LF;

public foo() {
 LF=10;
 System.out.print("= Orego" + LF + LF );
}

public static void main(String[] args) {
 new foo();
}

}

--
Richard L. Brown             Office of Information Services
Senior Unix Sysadmin         University of Wisconsin System
                            780 Regent St., Rm. 246
rbrown@xxxxxxxxxxxxxxxxx              Madison, WI  53715

_______________________________________________
computer-go mailing list
computer-go@xxxxxxxxxxxxxxxxx
http://www.computer-go.org/mailman/listinfo/computer-go/