Show HN: The C3 programming language (C alternative language)
C3, a programming language project since 2019, has released version 0.7.0, focusing on modern features without backward compatibility. It includes a module system, semantic macros, and various projects.
C3, a programming language project initiated in 2019, has recently released version 0.7.0 and is progressing towards its 1.0 version. Unlike other alternatives to C, C3 aims to evolve the language without maintaining backward compatibility. Key features of C3 include a module system, semantic macros, compile-time introspection, lightweight generic modules, zero overhead errors, built-in slices and SIMD types, gradual contracts, and built-in checks during debug mode. For those interested in exploring C3 further, examples of the language can be found on its official website, along with links to discussions and interviews about the language. Additionally, there are various projects developed using C3, including a Gameboy emulator and a roguelike game titled "Depths of Daemonheim." The language's development reflects a commitment to modern programming needs while providing innovative features that enhance the programming experience.
- C3 is evolving towards version 1.0, with the latest release being 0.7.0.
- The language introduces features like a module system and semantic macros, focusing on modern programming needs.
- C3 does not prioritize backward compatibility with C, allowing for innovative changes.
- Examples and projects using C3 are available for those interested in its applications.
- The language has generated discussions and interviews, indicating a growing community and interest.
Related
C3 lang – A modern C alternative – 0.6.3 released
C3 is a programming language derived from C, emphasizing ergonomics and safety, with features like optionals, SIMD support, and a developing standard library for graphics and game frameworks.
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.
C-Language.org
C is a high-level programming language suitable for system programming, known for its efficiency and portability. The latest standard, C23, will be published on October 31, 2024.
I stopped everything and started writing C again
The author transitioned from Ruby on Rails to C after working with Common Lisp, developing the KC3 language and libc3 library, focusing on performance, portability, and defensive programming principles.
C programming language official site
C is a high-level programming language suited for system programming, known for portability and efficiency. The latest standard, C23, will be published on October 31, 2024.
- Users appreciate C3's modern features and ease of integration with C libraries, comparing it favorably to other languages like Zig and Odin.
- There are mixed feelings about certain syntax choices, with some users expressing preferences for different styles.
- Questions arise regarding the language's capabilities, such as weak functions and standard library contributions.
- Some users express concerns about the language's adoption and the challenges of moving away from C.
- Overall, there is a sense of optimism about C3's potential as a viable alternative to C.
I do all my coding in Python, but if I ever find myself needing to reach for C again, I'll certainly consider this.
EDIT: Though is there a reason why "fn" is needed? I would think the AST builder would still be able to identify the beginning of a function definition without it, and as a programmer, I can identify a function definition easily.
There are some syntax choices that aren't ones I'd have made (eg I prefer `ident: Type` and types being uppercase, I don't like `fn type identifier ()` for functions etc), but coming from C, I can see how and why it ended up like it did, and overall this looks really good. Great work!
It is a pretty big improvement on C without changing the ABI. Maybe not the improvements I would make if I was smart enough to make a compiler, but better than doing C which I also enjoy despite it's warts.
Also I just checked the source code of hash map. What if I want to use a different hashing algorithm for "rehash"?
There is no one true implementation of a hash table either, for example, so I am not sure what to do with that. I want a thread-safe hash table, I wonder if it would ever make it into the standard library.
What I would like to see is a language that is essentially just C with the major design flaws fixed. Remove the implicit casting and obscure integer promotions. Make spiral rule hold everywhere instead of being able to put const at the beginning of the declaration. Make `sizeof()` return a signed type. Don't allow mixed signed/unsigned arithmetic. Make variables/functions private by default i.e. add `public` to make public instead of `static` to make private.
Keep the preprocessor and for the love of god make it easy to invoke the compiler/linker directly so I can write my own Makefile.
Then how do you express read-only pointers ? Like C `const int* ptr`
1. Generics / templates
2. Destructors
3. Ownership
It is unfortunate that this only has the first one. There was a language called clay that had all three and kept easy integration with the C ABI, but it seems like that design has been lost.
Asking because my above question and this current post about C3 are related to this recent post by me, which had a good number of comments:
Ask HN: What less-popular systems programming language are you using?
Related
C3 lang – A modern C alternative – 0.6.3 released
C3 is a programming language derived from C, emphasizing ergonomics and safety, with features like optionals, SIMD support, and a developing standard library for graphics and game frameworks.
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.
C-Language.org
C is a high-level programming language suitable for system programming, known for its efficiency and portability. The latest standard, C23, will be published on October 31, 2024.
I stopped everything and started writing C again
The author transitioned from Ruby on Rails to C after working with Common Lisp, developing the KC3 language and libc3 library, focusing on performance, portability, and defensive programming principles.
C programming language official site
C is a high-level programming language suited for system programming, known for portability and efficiency. The latest standard, C23, will be published on October 31, 2024.