nessa-language 0.9.1

An extensible programming language with a strong type system
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
The main building blocks of the Nessa type system are what we will call **basic types**. These represent kinds of data that can be stored.
As you might expect, Nessa provides an implementation for some basic types, which are summarized in the following table:

| Name     | Description                                                 |
| -------- | ----------------------------------------------------------- |
| `Int`    | Unbounded size integer                                      |
| `Float`  | 64 bits floating point number                               |
| `Bool`   | Value that can be either *true* or *false*                  |
| `String` | UTF-8 encoded text                                          |
| `File`   | Handle that points to a file and allows reading and writing |

These types are not much by themselves, but in the following sections we will see how we can combine them in order to make more complex types.