Created
February 23, 2016 15:03
-
-
Save ilyaBrandon/aafa539c4e64c2336dec 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
| public class BATTLEFRONT { | |
| public static void main(String[] args) { | |
| hello("lesson 2 "); | |
| hello("Oleg"); | |
| } | |
| 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