view tests/parser/float_1.d @ 111:c658172ca8a0

Parsing basic integers and floats.
author Anders Johnsen <skabet@gmail.com>
date Sun, 25 May 2008 15:42:44 +0200
parents
children c3b24e7e8cf8
line wrap: on
line source



void main()
{
    float f1  = 4_.5_e5+4;
    float f2  = 4._5_e+344;
    float f3  = 4.__5_e-_2;
}