Skip to content

Instantly share code, notes, and snippets.

@ilyaBrandon
Created February 11, 2016 19:12
Show Gist options
  • Save ilyaBrandon/1d52e31f3769fff79a1d to your computer and use it in GitHub Desktop.
Save ilyaBrandon/1d52e31f3769fff79a1d to your computer and use it in GitHub Desktop.
package rojeckt;
public class MyFirstProgramm {
public static void main(String[] args) {
String a = "Hello my name is ";
String b = "Ilya i am ";
String f = "";
int x = 13;
System.out.print(f+a+b+x);
System.out.print(f);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment