durin VS c3c

Compare durin vs c3c and see what are their differences.

durin

the Dependent Unboxed higher-oRder Intermediate Notation (by naalit)

c3c

Compiler for the C3 language (by c3lang)
InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured
durin c3c
3 24
13 1,288
- 1.4%
0.0 9.5
about 2 years ago 4 days ago
Rust C
GNU General Public License v3.0 or later GNU Lesser General Public License v3.0 only
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

durin

Posts with mentions or reviews of durin. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2022-04-14.
  • Are there any low level, cross platform assembly languages that allow jumping to non labels?
    3 projects | /r/ProgrammingLanguages | 14 Apr 2022
    So I think I may be one of the few people in the world who has actually implemented a GC using LLVM's statepoint infrastructure. It's poorly documented and there are some gotchas, but I'd say it's definitely usable, and it works with basically any collector design, including moving collectors (I'm using Immix) and has no runtime bookkeeping overhead and allows LLVM to optimize the code without worrying about GC, which is nice. It's actually gotten a bit better with LLVM 13, too. If you're curious what a LLVM-based GC looks like, mine is in this folder. Of course, if you just want some sort of GC, you can also just link it with Boehm which is quite easy and has pretty good performance - this is what e.g. Crystal does, although they're talking about switching.
  • September 2021 monthly "What are you working on?" thread
    8 projects | /r/ProgrammingLanguages | 1 Sep 2021
    I also fixed lots of bugs in the GC and backend, so it should be a lot more stable now.
  • May 2021 monthly "What are you working on?" thread
    11 projects | /r/ProgrammingLanguages | 1 May 2021
    Recently, I've been working on adding garbage collection to Pika. I've successfully written an Immix-based garbage collector that works with the LLVM GC support infrastructure, and I'm currently working on integrating the GC with Pika, or really Durin, the dependently-typed intermediate representation that Pika compiles to. Because types are passed around at runtime, objects of unknown type and size can be stored unboxed in polymorphic data structures; but that makes keeping track of type information for heap allocations somewhat harder, because type information needs to be allocated and constructed at runtime in some cases. It's an interesting design problem, because you want constructing type information to be fast; but the GC will run much more often, so maximizing tracing speed by avoiding e.g. indirection in type information is important; and you also want to construct as much type information as possible at compile time and embed it as constants.

c3c

Posts with mentions or reviews of c3c. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-01-01.
  • Odin Programming Language
    23 projects | news.ycombinator.com | 1 Jan 2024
  • Show HN: The C3 programming language reaches feature-stabiliy
    1 project | news.ycombinator.com | 21 Nov 2023
    C3, "The C-like for people who like C" just reached v0.5, marking its feature-stable release: https://c3.handmade.network/blog/p/8824-say_hello_to_c3_0.5

    Feature stability ensures that version 0.5 will undergo bug fixes and maintenance separately from the main branch, providing projects with a stable compiler version to work with.

    Try it out in the browser https://learn-c3.org

    Github: https://github.com/c3lang/c3c

    If you appreciate C, then maybe this is a language you'll enjoy. Dive into the documentation at https://c3-lang.org to view examples and read more in depth about the language.

  • Give me your feature ideas for a C-like
    4 projects | /r/ProgrammingLanguages | 14 Jun 2023
    Tuples are being discussed, although I am unsure if it would be sufficiently useful. (Discussion here and here if you want to leave some thoughts)
  • Is there a static version of lld available? Or do I have to build lld from scratch?
    1 project | /r/Fedora | 13 Jun 2023
    I've been trying to build c3lang on my local machine. The problem is that it requires static files for both llvm and lld. Now, the static files for llvm have been provided (llvm-static), but not for lld, at least that's what I think. I thought that maybe I've made a mistake somewhere by not search the package thoroughly. I just wanted to know what package will install static files for lld.
  • Give me your best (and worst) ideas for a C-like language
    1 project | /r/ProgrammingLanguages | 13 Jun 2023
    So (preferably) have a little look at the language (https://c3-lang.org/) and maybe try it out (https://learn-c3.org/) and then file whatever issue you want: https://github.com/c3lang/c3c/issues/new
  • C3 is now at 0.4.0
    4 projects | /r/ProgrammingLanguages | 29 Dec 2022
    Like this: https://github.com/c3lang/c3c
  • Learn Enough C to Survive
    4 projects | news.ycombinator.com | 16 Oct 2022
    > I wish we had C+: C + a few niceties (and not C ++ everything). There's a whole bunch of newer languages aiming at the space C is sitting in, but with a few additions C could be much more ergonomic without having to invent an entire new language.

    I’ve made a pre-processor for C to add some things I miss, although it is currently limited to what can be done without type information and has to keep compatibility with existing C syntax: https://sentido-labs.com/en/library/cedro/202106171400/

    There is another language call C3 that “is a C-like language striving to be an evolution of C, rather than a completely new language”: https://github.com/c3lang/c3c

    If you have the time, I’d like to hear which things you miss in C. There might be something I did not imagine that could be added to Cedro.

  • Are Hoistings Possible for C++?
    8 projects | /r/cpp | 17 Aug 2022
    Off the top of my head, cc99 and c3 are two C dialects that both can do this.
  • C3C - Compiler for the c3 language
    1 project | /r/github_trends | 12 Aug 2022
  • The case against an alternative to C
    9 projects | news.ycombinator.com | 8 Aug 2022

What are some alternatives?

When comparing durin and c3c you can also consider the following projects:

bluebird - A work-in-progess programming language modeled after Ada and C++

poprc - A Compiler for the Popr Language

never - Never: statically typed, embeddable functional programming language.

librope - UTF-8 rope library for C

konna - A fast functional language based on two level type theory

SinScheme - Sinister's Scheme Compiler!

pika - A WIP little dependently-typed systems language

oasis - a small statically-linked linux system

imp - Imp is a statically typed and compiled scripting language with the goal of increasing programmer confidence.

lisp - A lisp JIT compiler and interpreter built with cranelift.

kesh - A simple little programming language that could one day compile to JavaScript.

cone - Cone Programming Language