source: testjes/numtostest.cpp @ 10

Last change on this file since 10 was 10, checked in by willem, 11 years ago

willem

File size: 273 bytes
Line 
1#include <iostream>
2#include "../trunk/utils.h"
3
4int main()
5{
6  unsigned long long n =678;
7  std::cout << NumberToString(n) << std::endl;
8  double x=355.0/113.0;
9  std::cout << NumberToString(x) << std::endl;
10  std::cout << StringToNumber<double>("77.123") << std::endl;
11}
Note: See TracBrowser for help on using the repository browser.