support comparison of long values

Issue #2 resolved
Riadh Chtara created an issue
    void  doit(){
        long i = 1l;
        if(i*10 <100l)
            System.out.println(true);
        else
            System.out.println(false);


    }

Comments (10)

  1. Log in to comment