Overview - Neut Programming Language
Neut is a functional programming language with static memory management.
Its key features include:
Full λ-calculus support
Predictable automatic memory management
The absence of annotations to the type system when achieving both of the above
Neut doesn't use GCs or regions. Instead, it takes a type-directed approach to handle resources.
What Does it Look Like?
Like the following:
// the obligated hello world
define hello(): unit {
print("Hello, world!\n")
}
// algebraic data types
data my-list(a...
Read more at vekatze.github.io