Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Minimal minimal #1286

Merged
merged 3 commits into from
Feb 22, 2025
Merged

Minimal minimal #1286

merged 3 commits into from
Feb 22, 2025

Conversation

andrew-johnson-4
Copy link
Owner

Describe your changes

  • fix a bug in tuple destructuring syntax
(a, b) = c(x);

was

a = c(x).1;
b = c(x).2;

but should have been

let (uuid cx) = c(x);
a = (uuid cx).1;
b = (uuid cx).2;

to prevent reevaluating c(x)

Issue ticket number and link

Checklist before requesting a review

  • [ x ] I have performed a self-review of my code
  • [ x ] If it is a new feature, I have added thorough tests.
  • [ x ] I agree to release these changes under the terms of the permissive MIT license (1).
  1. https://github.com/andrew-johnson-4/lambda-mountain/blob/main/LICENSE

@andrew-johnson-4 andrew-johnson-4 merged commit 4a6c7ca into main Feb 22, 2025
@andrew-johnson-4 andrew-johnson-4 deleted the minimal-minimal branch February 22, 2025 22:15
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant