-
Notifications
You must be signed in to change notification settings - Fork 2
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 functions, concurrency, wait/post (type checking is not complete) #51
Conversation
Will fix this and submit a PR #52 |
oh right HW is "homework" |
Hey man, I found a bug with extending the environment that prevents higher order function call. It is fixed in #50 |
Function calls
Function declarations
Add spawn
Add join - for now just
join <symbol>
, no fancy expr allowedAdd wait and post
Add yield
Add string literals
Update examples
See examples for function declarations. With type checking on, the following is currently enforced:
let x : bool = func();
where func returns int will fail type checkingHowever, I have not added type checking of the function body yet and some other features related to type checking. Will do this in another PR after presentation.
This PR also adds syntax/compilation for spawn, join, wait, post, yield and string literals.
All the examples should now be functional, except for garbage-collection-02 and higher-order-fn-01 as support for function types in annotations is not added yet. These are functional when compiling / running untyped.