Skip to content

Instantly share code, notes, and snippets.

@creyn
Created August 25, 2018 14:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save creyn/8c2f5934157532dffc66a4bd727fd845 to your computer and use it in GitHub Desktop.
Save creyn/8c2f5934157532dffc66a4bd727fd845 to your computer and use it in GitHub Desktop.
Droga Programisty : Kod : Zmienne tekstowe w Javie
public class ZmienneTekstowe {
public static void main(String args[]) {
String tekstPierwszy = "Droga ";
String tekstDrugi = "programisty";
System.out.println(tekstPierwszy + tekstDrugi);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment