ht's Scheme Interpreter  1.0
a simplified scheme interpreter implementation
float.hpp
Go to the documentation of this file.
1 #ifndef __SCHEME_TYPES_FLOAT
2 #define __SCHEME_TYPES_FLOAT
3 #include "arch.hpp"
4 #include <string>
5 typedef double FloatType;
6 bool isFloat(const std::string& token);
7 ExtraInfo getFloatExtraInfo(const std::string& token);
8 #endif
ExtraInfo getFloatExtraInfo(const std::string &token)
bool isFloat(const std::string &token)
Definition: float.cpp:41
double FloatType
Definition: float.hpp:5