/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

package basetypes;

/**
 *
 * @author kvaradar
 */
public class BaseTypes {

    /**
     * @param args the command line arguments
     */
    public static void main(String[] args) {
        // TODO code application logic here

        boolean flag = true;
        int i = 10;
        char ch = 'A';
        double d = 3.1415;

        System.out.println("flag = " + flag);
        System.out.println("i = " + i);
        System.out.println("ch = " + ch);
        System.out.println("d = " + d);

        int j = i;
        i = i + 1;
        System.out.println("i = " + i);
        System.out.println("j = " + j);
    }

}
