Created
October 20, 2015 10:36
-
-
Save edinak1/f278dc3ee99c312e726a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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