Files
Giulio Agostini 842216729b wip:
Add type system and refator for having only epression
2026-07-06 10:43:17 +02:00

783 B
Executable File

README

Syntax example:

funzione :: fn(parametro1: Number, parametro2: String): String do

end

Planning:

allora quello che devo fare è:

TODO Controllare se ho finito la questione del retourn:labe

TODO implement struct:

Cosa :: struct{
        field1: Number
}

TODO update lexert

TODO update ast

TODO update parser

TODO implement partial function …

cosa := make(Cosa, feld1: 42)
function :: fn(self:Cosa, b: Number) -> Number
res := function(cosa,44)

TODO … to undericlty create method

res := cosa.function(44)

TODO … to make pipeline

res := cosa |> function(44)

TODO Understand what is a type system