lambda stuff [wip]

This commit is contained in:
Roland Conybeare 2024-08-20 13:31:17 -04:00
commit 5038045bdc
10 changed files with 309 additions and 41 deletions

View file

@ -0,0 +1,14 @@
/* @file GeneralizedExpression.cpp */
#include "GeneralizedExpression.hpp"
namespace xo {
namespace ast {
std::string
GeneralizedExpression::display_string() const {
return tostr(*this);
}
} /*namespace ast*/
} /*namespace xo*/
/* end GeneralizedExpression.cpp */