You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When evaluating the expression !((+ 1) 1) in MeTTa-REPL, the output is [] (Empty). However, the expected behavior is to return [ ((+ 1) 1) ], representing the unevaluated expression as per MeTTa's principles.
Steps to Reproduce
Open MeTTa-REPL.
Enter the following command:
!((+ 1) 1)
Observe the output.
Actual Behavior
The REPL returns:
[]
Expected Behavior
The REPL should return:
[((+ 1) 1)]
Additional Notes
This appears to be a bug that happens with
> !((abs-math) -1)
[]
but not with
> !((goofed) -1)
[((goofed) -1)]
The text was updated successfully, but these errors were encountered:
When evaluating the expression
!((+ 1) 1)
in MeTTa-REPL, the output is[]
(Empty). However, the expected behavior is to return[ ((+ 1) 1) ]
, representing the unevaluated expression as per MeTTa's principles.Steps to Reproduce
Actual Behavior
The REPL returns:
Expected Behavior
The REPL should return:
Additional Notes
This appears to be a bug that happens with
but not with
The text was updated successfully, but these errors were encountered: