added a couple of comments

master
sortai 2021-09-12 16:03:43 +00:00
parent b114d21f8c
commit c7dfbb8283
1 changed files with 3 additions and 3 deletions

View File

@ -223,7 +223,7 @@ namespace M { //M-Expressions
} }
int main() { int main() {
/* /* Human-readable version of the following expression
Eval[ Eval[
((LABEL Atom0 ((LABEL Atom0
(LAMBDA (Atom1 Atom2) (COND (LAMBDA (Atom1 Atom2) (COND
@ -320,7 +320,7 @@ Eval[
S::NIL> >, S::NIL> >,
S::NIL> > >, S::NIL> > >,
S::NIL S::NIL
>::value typedef X; >::value typedef X; //X is the result of the computation
X::print_by_error; X::print_by_error; //print_by_error doesn't exist, so a compiler with good feedback will represent the type "X" in an error
return 0; return 0;
} }