Talk:Hello world/Line printer

From Rosetta Code

Task definition

Based on the given solutions, I've done a quick definition of what the task is about. Feel free to revise if you believe I've not captured it correctly. –Donal Fellows 07:22, 3 October 2010 (UTC)

Is a line printer separate from some other way to print?

Java

public class Print {

  public static void main(String[] args)
  {
      System.out.println("Hello World");
  }

}