mirror of
https://github.com/ProgramSnail/lang_modes_check.git
synced 2025-12-06 17:18:43 +00:00
12 lines
291 B
C++
12 lines
291 B
C++
|
|
#include "parsing_tree.hpp"
|
||
|
|
|
||
|
|
using namespace nodes;
|
||
|
|
|
||
|
|
int main() {
|
||
|
|
const auto program =
|
||
|
|
Expr{Let{Arg{"f", {}},
|
||
|
|
lambda1("x", operator_call("+", make_expr<Var>("x"),
|
||
|
|
make_expr<Var>("x"))),
|
||
|
|
make_expr<Var>("f")}};
|
||
|
|
}
|