Skip to content

Instantly share code, notes, and snippets.

@e-tverdokhleb
Last active November 10, 2015 06:13
Show Gist options
  • Save e-tverdokhleb/ceedbb43dff59ba7a4c4 to your computer and use it in GitHub Desktop.
Save e-tverdokhleb/ceedbb43dff59ba7a4c4 to your computer and use it in GitHub Desktop.
public class Main {
public static void main(String[] args) {
System.out.println(hello("Valera"));
}
private static String hello(String name){
return "Hello " + name;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment