Skip to content

Instantly share code, notes, and snippets.

@e-tverdokhleb
Created November 2, 2015 13:26
Show Gist options
  • Save e-tverdokhleb/5711d8373a973b48f0ee to your computer and use it in GitHub Desktop.
Save e-tverdokhleb/5711d8373a973b48f0ee to your computer and use it in GitHub Desktop.
public class Lesson1_HomeWork {
public static void main(String[] args) {
String greeting = "Hello from Java";
String str;
System.out.print("Some string");
System.out.print("Hello "+"concatination!" );
str = "155"+45;
System.out.print(str);
System.out.print("");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment