Skip to content

Instantly share code, notes, and snippets.

@AnnaBoro
Last active December 21, 2015 12:20
Show Gist options
  • Save AnnaBoro/caa6ed526816cf09bfe6 to your computer and use it in GitHub Desktop.
Save AnnaBoro/caa6ed526816cf09bfe6 to your computer and use it in GitHub Desktop.
1.5
public class GreetingService {
public static void main(String[] args) {
if (args.length > 0) {
System.out.println("Hello " + args[0]);
}
else {
System.out.println("Print 'java GreetingService ' and enter name ");
}
}
}
@liuiv15
Copy link

liuiv15 commented Dec 1, 2015

Могут возникнуть вопросы по правилу ввода. Знак + нужно или нет.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment