comparison 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
comparison
equal deleted inserted replaced
110:2deb4c1f0d93 111:c658172ca8a0
1
2
3 void main()
4 {
5 float f1 = 4_.5_e5+4;
6 float f2 = 4._5_e+344;
7 float f3 = 4.__5_e-_2;
8 }