This Java program prints nothing when run using Compile & Run Single File.
public class test { public static void main(String[] args) { System.out.println("<hello>"); } }
Apparently the output is being squelched because it looks like markup. Is there a way around this? Or is it just a bug?
Trevor