This repository was archived by the owner on May 23, 2023. It is now read-only.
This repository was archived by the owner on May 23, 2023. It is now read-only.
Macros defined in Phoo code don't work #6
Open
Description
I get:
Welcome to Phoo.
Version 0.2.0 (cfca97d)
Strict mode is ON
Press Shift+Enter for multiple lines.
(0)--> ' [ [ 1 2 + ] const ]
Stack: [[[1, 2, Symbol(+)]]]
(1)--> // drop
Stack: []
(2)-->
(0): const
is not turning the [ 1 2 + ]
into 3
.
(1): the drop
should be commented out but it isn't.
expected:
Welcome to Phoo.
Version 0.2.0 (cfca97d)
Strict mode is ON
Press Shift+Enter for multiple lines.
(0)--> ' [ [ 1 2 + ] const ]
Stack: [[3]]
(1)--> // drop
Stack: [[3]]
(2)-->