Skip to content

Instantly share code, notes, and snippets.

@alexejVasko
Created February 11, 2016 14:24
Show Gist options
  • Save alexejVasko/419db96110cfcd640c87 to your computer and use it in GitHub Desktop.
Save alexejVasko/419db96110cfcd640c87 to your computer and use it in GitHub Desktop.
package lesson1;
public class DataTypes1 {
/**
* @param args
*/
public static void main(String[] args) {
System.out.println("hi");
System.out.println("hello" + "world");
System.out.println("");
System.out.print("hello" + 5);
System.out.print("hello" + 5);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment