We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
let
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
A self-explanatory example:
let_example = let T = Int in let f = _+_ in proc(c : ?T.!T) recv c (x : T). let y = (f x x). send c y
A form with type annotation let x : T = t would be equivalent to let x = (t : T) using #18.
let x : T = t
let x = (t : T)
The text was updated successfully, but these errors were encountered:
Issue#17: Basic working support for let bindings
8e9c3de
Local definition using `let` are now supported both in terms and processes.
Improved handling of let.
7129d56
Hash terms to avoid conflicts while generating names
908fab3
No branches or pull requests
A self-explanatory example:
A form with type annotation
let x : T = t
would be equivalent tolet x = (t : T)
using #18.The text was updated successfully, but these errors were encountered: