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

Add let declaration/statement for binding #545

Merged
merged 1 commit into from Mar 11, 2024
Merged

Conversation

dalance
Copy link
Collaborator

@dalance dalance commented Mar 11, 2024

Closes #526

Migration guide

Change from var with = to let.

  • From
module ModuleA {
  var a: logic<10> = 1;
}
  • To
module ModuleA {
  let a: logic<10> = 1;
}

@dalance dalance merged commit 9027d03 into master Mar 11, 2024
6 checks passed
@dalance dalance deleted the let_declaration branch May 2, 2024 11:55
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

let declaration for variable binding
1 participant