Skip to content

Instantly share code, notes, and snippets.

@priyankahdp
Created November 18, 2013 16:57

Revisions

  1. priyankahdp created this gist Nov 18, 2013.
    15 changes: 15 additions & 0 deletions test.java
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,15 @@
    public class TestMain {

    public static void main(String[] args) {
    boolean bl=true;
    byte b=10;
    short s=54;
    int i=150;
    long l=125L;
    float f=32.5f;
    double d=99.45;

    System.out.println(bl+" "+b+" "+s+" "+i+" "+l+" "+f+" "+d);

    }
    }