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
On 8/4/2006, at 12:36, Trevor Harmon wrote:
This Java program prints nothing when run using Compile & Run Single File. [...] Apparently the output is being squelched because it looks like markup. Is there a way around this? [...]
The Compile & Run command run the java program and uses the HTML output option for output, so ‘|pre’ needs to be added to the command (‘java "${TM_FILENAME%.java}"’).
I have updated the default command.