Logo

Programming-Idioms

History of Idiom 1 > diff from v88 to v89

Edit summary for version 89 by swedebugia:
[Java] boilerplate not relevant IMO

Version 88

2020-04-30, 10:00:54

Version 89

2020-04-30, 15:49:14

Idiom #1 Print Hello World

Print a literal string on standard output

Idiom #1 Print Hello World

Print a literal string on standard output

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

Code
System.out.println("Hello World");

Comments bubble
All of this boilerplate is required to print to the terminal.
Comments bubble
All of this boilerplate is required to print to the terminal.