Closed spavikevik closed 10 months ago
This PR adds generics (type parameters) and restricts parametric polymorphism. Thus,
fn identity(x: a) -> a { x }
is now invalid and should be written as
fn identity<x>(x: a) -> a { x }
This PR adds generics (type parameters) and restricts parametric polymorphism. Thus,
is now invalid and should be written as