Skip to content

Instantly share code, notes, and snippets.

@ilyaBrandon
Created February 23, 2016 15:03
Show Gist options
  • Select an option

  • Save ilyaBrandon/aafa539c4e64c2336dec to your computer and use it in GitHub Desktop.

Select an option

Save ilyaBrandon/aafa539c4e64c2336dec to your computer and use it in GitHub Desktop.
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