better boolean handling..

still T symbol should be implemented
This commit is contained in:
2021-05-05 21:43:08 +02:00
parent ea76cdf0be
commit 783aa6976b
3 changed files with 16 additions and 13 deletions

3
ml.h
View File

@@ -110,6 +110,9 @@ public:
// Constructs a floating point value
MlValue(double f);
// Constructs a bool value
MlValue(bool b);
// Constructs a list
MlValue(const std::vector<MlValue> &list);