Talk:Hello world/Line printer: Difference between revisions

From Rosetta Code
Content added Content deleted
m (moved Talk:Hello world/Line Printer to Talk:Hello world/Line printer: standardize capitalization)
Line 2: Line 2:


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. –[[User:Dkf|Donal Fellows]] 07:22, 3 October 2010 (UTC)
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. –[[User:Dkf|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");
}
}

Revision as of 09:51, 26 April 2011

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");
  }

}