38 releases

new 0.4.19 Feb 6, 2026
0.4.17 Jan 15, 2026
0.4.10 Oct 12, 2025
0.4.0 Jul 14, 2025
0.1.5 Dec 27, 2024

#154 in Programming languages

Apache-2.0

1MB
17K SLoC

Contains (ELF exe/lib, 3.5MB) test_debug

TypR

Website

The link for the official website is here.

Installation

You can see it through the getting started of the documentation here.

Code example

type Person = list {
	name: char,
	age: int
};

new_person <- fn(name: char, age: int): Person {
	list(name = name, age = age)
};

is_minor <- fn(p: Person): bool {
	p$age < 18
};

alice <- new_person("Alice", 35);

alice.is_minor()

Support this project ๐Ÿš€

Hey awesome scientist!

If this project sparks your curiosity, makes your life easier, or simply inspires you, hereโ€™s how you can help it grow:

  • ๐Ÿ› ๏ธ Contribute: improve the code, report bugs , or suggest cool new features
  • ๐Ÿ“ข Share it with friends, colleagues, or your community โ€” spread the word!

Every little action counts โ€” together we can make this project shine even brighter. Thank youโœจ

Dependencies

~25โ€“40MB
~506K SLoC