view run/float_litaeral_dec_09.d @ 391:7fc991afefd1

0. and 0..1 can be recognized Walter <walter@digitalmars.com> 2005-04-06 mail:001701c53ace$7e91de50$0200a8c0@colossus
author thomask
date Wed, 06 Apr 2005 18:30:47 +0000
parents
children
line wrap: on
line source

// $HeadURL$
// $Date$
// $Author$

module dstress.run.float_literal_dec_09;

int main(){
	double f = .0 ;
	double ff = 0.0;
	assert(f==ff);
	return 0;
}