Calamity210 / BirbLang

Minimal Bird programming language curated to help new contributers delve into OSS

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Types and generic type parameters

Andy-Python-Programmer opened this issue · comments

Generic type parameters:

Syntax

List<String> = ["a", "b", "c"];

Add typedefs:

Syntax

type example = List<String>;