mirror of
https://github.com/ProgramSnail/lang_modes_check.git
synced 2025-12-06 00:58:42 +00:00
14 lines
309 B
C++
14 lines
309 B
C++
#include "parsing_tree.hpp"
|
|
|
|
#include <iostream>
|
|
|
|
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")));
|
|
|
|
}
|