Skip to content

Instantly share code, notes, and snippets.

@edinak1
Created October 20, 2015 10:36
Show Gist options
  • Select an option

  • Save edinak1/f278dc3ee99c312e726a to your computer and use it in GitHub Desktop.

Select an option

Save edinak1/f278dc3ee99c312e726a to your computer and use it in GitHub Desktop.
package metod;
public class FirstMetod {
public static void main(String[] args) {
hello("Java!");
}
static void hello(String name)
{
System.out.println("Hello "+name);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment