January 21st, 2025

A Minimalist TypeScript for C

A new programming language, Cp1, extends C with features like namespaces, modules, methods on enums/structs, and automatic variable deduction, aiming to modernize the developer experience.

A Minimalist TypeScript for C

A new programming language called Cp1, or C+1, has been introduced as a minimalist extension of the C programming language. This language incorporates essential features that enhance C, including the ability to output C code, utilize namespaces, and implement modules. Additionally, Cp1 supports methods on enums and structs, as well as automatic variable deduction. The language aims to provide a streamlined experience for developers familiar with C while introducing modern programming concepts. For more information and access to the source code, users can visit the project's GitHub page.

- Cp1 is a minimalist extension of the C programming language.

- It introduces features like namespaces, modules, and methods on enums/structs.

- The language supports automatic variable deduction.

- Cp1 allows for outputting C code directly.

- The project is available on GitHub for further exploration.

Link Icon 10 comments
By @billev2k - 2 months
Crazy usage of "+". Using "+" as a synonym for "var" seems pretty pointless. Suffix "+" to mean stack allocated (vs not yet allocated?), unless it's an array, in which case "+" means objects not pointers. Or so it seems.

And allowing the minus sign as an identifier character is just asking for errors.

Some nice ideas (member functions!). Love to see the next evolution.

By @rwbt - 2 months
Interesting project, similar to Cake[0]

[0] - https://github.com/thradams/cake

By @lelanthran - 2 months
Two different overloads of '+' for a total of 3 different meanings for '+'.

4 if you include ++.

By @timz - 2 months
https://www.assemblyscript.org/ is somehow similar, but targets only webassembly now
By @tzmlab - 2 months
Is it possible to replace LibC? We'd like to test this on bare-metal target using newlib-nano.
By @WorldMaker - 2 months
This feels to me halfway to reinventing Pascal the long way around. Fascinating
By @leecommamichael - 2 months
Looks like more of an idea than usable compiler. Generated parser and all.
By @dezmou - 2 months
Is there another example that show how memory allocation work with pointers and stuff ?
By @pmkary - 2 months
nice!