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

Type system #5

Open
1 of 3 tasks
Quaqqer opened this issue Apr 29, 2024 · 0 comments
Open
1 of 3 tasks

Type system #5

Quaqqer opened this issue Apr 29, 2024 · 0 comments

Comments

@Quaqqer
Copy link
Owner

Quaqqer commented Apr 29, 2024

The saft language should be a typed language. Typing could be added incrementally.

  • Type annotations. Declarations and functions should be annotated. Functions should contain annotations for parameters as well as the return value. If the return type is omitted the function returns nil.
  • Types. The types of values that can be represented are currently nil, numbers, functions, vectors (of types), and strings. Types should be defined by items, not just keywords. This allows for type aliasing for instance, with type x = int;. Currently Saft has no good way of defining items in a prelude-esque way, so this would be a starting step.
  • The method for inference and checking in Saft is not yet decided. Currently I am considering some kind of Hindley Milner type system, or a bidirectional type system. Right now I am leaning more towards bidirectional type checking, it seems fun.
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

No branches or pull requests

1 participant