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

Implementation of namespaces #7

Closed
wants to merge 5 commits into from
Closed

Implementation of namespaces #7

wants to merge 5 commits into from

Conversation

alcides
Copy link
Owner

@alcides alcides commented Apr 17, 2023

This PR addresses #26.

Example:

List.create :: l:List = ...;
List.append :: (l:List) -> (e:Int) -> (l:List) = ...;

result : List = List.create.append 3

How to implement:

  • Add support for using the "." in the identifiers of function definitions.
  • Add support for using "." in variables.
  • Verify that TypingContext and EvaluationContexts have the right names.

@alcides alcides marked this pull request as draft September 26, 2023 16:34
@alcides alcides added the good first issue Good for newcomers label Mar 2, 2024
@alcides alcides linked an issue Mar 2, 2024 that may be closed by this pull request
3 tasks
@alcides alcides closed this Dec 2, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
good first issue Good for newcomers
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Namespaces
1 participant