Bold move by European Commission towards the memory safe language Seed7
Posted by ThomasMertes@reddit | programming | View on Reddit | 76 comments
The European Commission issued a strategy paper about memory safety. They propose a European concept of memory safety. They introduce categories of memory safety and the categories are summarized in the memory-safety levels 1 to 5. Language features are categorized regarding their support of memory safety.
They introduced the terms wild-pointer (which is essentially a C pointer) and checked-pointer. Inside the category of checked-pointers they further distinguish between ones which can be NULL and ones that cannot be NULL. So Java references count as checked-pointers which can be NULL. Interesting fact: Although C++ references cannot be NULL they count as wild-pointers, because there are ways to cast a C++ pointer to a reference.
Regarding unsafe-parts and inline-assembly they state that they are overused which compromises safety. They made a study about languages with unsafe-parts and inline-assembly. The study found out: About 30% of all Rust crates incorporate some use of unsafe Rust. The study also states: 70% of Rust developers are calling unsafe code through foreign functions.
In their language evaluation the language Seed7 is the clear winner. It is the clear winner because it is memory safe and has no unsafe parts. As a consequence the European Commission proposes the use of Seed7 in many areas of software development. There will be a Europe-wide research fund to facilitate the use of Seed7 in more areas. Companies will have tax reductions if they rewrite programs or libraries in Seed7.
This is seen as long term commitment of the European Union to improve software quality and to make Europe independent in the software industry.
epos95@reddit
Source? Reference? Anything to show that this is real?
thatikey@reddit
Check the date
SirDale@reddit
That is so fucking stupid. Why don't they just ban that shit in this sub?
loudandclear11@reddit
Found the C programmer.
SirDale@reddit
You really should stop jumping to conclusions.
I think C is quite a shitty language. It was sort of ok when it was designed, but we’ve moved on a long way since then.
chicknfly@reddit
Not sure if April Fools or.... nah you had to have written this because of April Fools.
SirDale@reddit
No, C is a shitty language. If you were designing it now you wouldn't make anywhere near the number of design choices that were made in the original version, most of which we are still stuck with.
chicknfly@reddit
I see your point, but it's also a 53 year old language, man. It's a product of its time. System resources were scant. It trusted the engineer to know what they're doing. There aren't that many tools out there that beat it in pure speed, and even then, how many of them are going to be taught in Computer Science programs as a means of teaching low-level work (especially educational programs that transition to Assembly code)?
I'm not saying your wrong -- there is A LOT to be desired from the language -- but I don't think referring to C as "shitty" is accurate.
SirDale@reddit
I wouldn't want to drive a 53 year old car because they are shitty and dangerous.
Yes I understand that computers were very limited back then (I was at Uni in 1980 using pdp-11s with mark sense paper cards) and C was limited by that.
But decisions that I discussed (e.g. == vs = ) have resulted in sooo many faults in programs that simply weren't needed. Algol like languages have =, := instead.
Some of these problems have been ameliorated (most compilers will tell you about ==, =) but there are situations in other languages that have inherited these mistakes that can still cause problems (e.g. == vs = in Java).
chicknfly@reddit
Cars and programming languages are two different things. Take COBOL for example, which was created in the 50’s and is still the primary language used in mainframes. Ironically, Java is slated to be its replacement.
I’m also not understanding your == vs = argument since every language I have used (which isn’t as expansive of a list as your experience) has used both instead of = vs :=. JavaScript and TypeScript take it even further with ===, which serves a purpose just as the other two.
Anyway, you’re right about language design choices. I still don’t see that as a way to say a language is shitty. Sorry, bud.
SirDale@reddit
if (x = 5) do something
How many program errors have resulted from this major design fault in the language?
Mostly can’t happen in Java but it can in one circumstance.
chicknfly@reddit
This exact situation exists in C, C++, C#, F#, Scala, Clojure, Java, JavaScript, TypeScript, EcmaScript, Python -- so many languages! Are they all shitty because of this one design "flaw"? And it's a design flaw, which still doesn't make the language shitty. Why is this the only recurring argument you have against C?
SirDale@reddit
File "Untitled2.py", line 4
if a = b:
\^
SyntaxError: invalid syntax
You don’t know enough to know what you are talking about.
chicknfly@reddit
If you say so, chief.
SirDale@reddit
"Here's a design flaw in C"
"Hah, same problem in all these other languages"
"No, here's a single counter example showing that isn't the case"
"I don't want to play anymore!"
chicknfly@reddit
You can change that behavior with command flags, and you know it. But go on, squeeze in the last word anyway.
SirDale@reddit
sure but then you aren’t progressing in C, you are progressing in C=ish.
The extra flags are required because of this design flaw.
SirDale@reddit
Here's the Scala version...
Output:
loudandclear11@reddit
https://imgur.com/yEvoPxa
Mycomian@reddit
Why do you hate fun
SirDale@reddit
I do. This isn't fun, it's just dopey.
mantasm_lt@reddit
Found an eurobureaucrat!
MagnetoManectric@reddit
Ya got got
BlueGoliath@reddit
sigh
TBF the EU do something this stupid.
shevy-java@reddit
Don't you worry - give the EU commission a few more days and they'll manage to come up with really incredibly more stupid and unrealistic ideas than the first april ones. :)
BufferUnderpants@reddit
Actually choosing a language instead of publishing a report on the formation of language choosing committees is what gave it away for me
ThomasMertes@reddit (OP)
According to the European Parlament nothing what the EU does is stupid.
vytah@reddit
We've investigated ourselves and found no wrongdoing
LordoftheSynth@reddit
Clearly undefined behavior.
BlueGoliath@reddit
I'm used to obviously fake and cringe corporate April fools "jokes", OK?
SerdanKK@reddit
No
PedanticDilettante@reddit
They got me too. I actually like the idea so I'm not seeing the joke.
shevy-java@reddit
That is the key: first april jokes must look semi-real. That way people are confused.
win32prog@reddit
I’m ashamed I fell for it too
CreepyPlay8446@reddit
We both got tricked
Original_Two9716@reddit
Bold move and European commission in a single sentence sounds ridiculous. There's no bigger evil these days than EU Commission.
Silhouette@reddit
There was an article last week about a new memory safe C++ standard. It is basically a subset of the full language that excludes dangerous features like raw pointers. Linus Torvalds is reportedly backing it as an alternative to Rust for new Linux kernel contributions as it's more familiar to all the existing C programmers who contribute patches.
1668553684@reddit
Is it really "memory safe," or is it "still extremely memory unsafe, but the absolutely egregious parts aren't here anymore"?
How does it deal with things like iterator invalidation?
o5mfiHTNsH748KVq@reddit
I was gettin’ real mad lol
BiteFancy9628@reddit
Don’t believe anything posted today. It’s April fools.
Pharisaeus@reddit
... to interface with existing native libraries?
... which means it can't benefit form existing native libraries and it can't be used to implement a lot of things, especially any hardrware-software interfaces and low-level code.
Flyen@reddit
Seed7 doesn't allow arbitrary input & output, so that helps protect it from a lot of things that those existing native libraries would be vulnerable to. As you said, it does limit what you can do. Might be worth it though. We'll just have to give it a try.
ThomasMertes@reddit (OP)
This is wrong: Seed7 supports input and output. You probably have been fooled by an Aprils fools joke.
Flyen@reddit
I was playing along...
ThomasMertes@reddit (OP)
The strategy paper of the European Commission has a whole chapter about your concerns.
The summary is: In a totally memory safe language (this term is used in the document) third party libraries cannot be called directly from normal user code. Instead third party libraries are only accessed from glue code in the standard library. It is the job of the glue code to guarantee safety.
It is assumed that the standard library of a language (which contains the glue code) is checked more widely. The paper also demands that the standard library of a language must be free software. This would allow anybody to check if the standard library (which is allowed to call third party libraries) is safe.
The paper compares this to the Linux approach for drivers. Linux requires that the drivers are free software and that their source code is in the Linux source tree. Refusing binary drivers without source has improved the quality of Linux drivers. Intrestingly Nvidia and their binary drivers are not mentioned in the paper.
tehnic@reddit
ok, thank you for this joke! :)
ThomasMertes@reddit (OP)
This is not a joke.
The European Commission did a serious step to improve software quality. Their strategy paper about memory safety might be hard to read, but the conclusions definitely make sense.
See how the European Commission forced all the huge companies to support USB-C connectors. The European Commission decisions about memory safety will have a decisive effect as well.
It was probably not a good idea to release the strategy paper today.
jet_heller@reddit
If so, where's the paper?
shevy-java@reddit
First april so ...
The commission is not very competent, but the Dutch are:
https://www.reuters.com/world/europe/dutch-parliament-calls-end-reliance-us-software-2025-03-18/
I don't refer this primarily in regards to "become less dependent on US companies" per se, but more about becoming more independent in general. Although I would not mind becoming less dependent on US companies pushing the narrative for crippling tariffs - I hold them also responsible, so the dutch approach makes double sense to me. (Sadly, not everyone in Europe is as willing to change as the dutch are. Rest of Europe is snail-pacing behind ... and Germany is even going backwards here.)
-Y0-@reddit
To think they would use Seed7 versus Sn33d.
Krinkleneck@reddit
Formerly developed by Chuck.
tomasartuso@reddit
This is a bold move indeed. I hadn't looked into Seed7 much before, but this definitely puts it on the radar. The part about tax incentives for rewriting libraries is huge—curious to see if companies will actually adopt it at scale or if it’ll stay more academic. Have you seen any real-world projects already running in Seed7?
Sabotaber@reddit
Memory safety is one of the least interesting correctness problems. If you can't be trusted to manage your own memory, why would I trust you to get anything else right?
And now I'm gonna get a bunch of people complaining at me who were told manual memory management is an impossible problem and never tried their own hand at figuring out how to do it consistently. Of the ones who did try, I can guarantee you that some 95% of them tried calling malloc every time they wanted to store something in the heap, got into a tangled mess, and never asked what would happen if they didn't write spaghetti code.
ShinyHappyREM@reddit
Real programmers just allocate a gig-sized global static array and use that as their heap.
Sabotaber@reddit
Hell yeah.
name_noname@reddit
It’s allocations all the way down.
Sabotaber@reddit
Now you're getting it.
Sairony@reddit
Who will enforce the usage of Seed7? I hear Europol is already quite swamped & with Trump going ballistic Interpol has other security concerns.
ThomasMertes@reddit (OP)
The European Commission has no plans to enforce their strategy. Instead there will be several incentives towards memory safe software.
ProdigySorcerer@reddit
Its good they are thinking about this.
But I wonder for lighter stuff will Python and JS need replacements? Can they be replaced?
ThomasMertes@reddit (OP)
The European Commission sees Python as memory safe, if no external C libraries are used. Unfortunately many Python programs use external C libraries, especially in the Science community.
What reduced the ranking of Python significant is the fact that it is a dynamically typed language.
Regarding the use of type annotations the paper of the European Commission states that type annotations are a much weaker concept than strict static type checking.
Takeoded@reddit
also type annotations in Python are little more than comments in Python. Consider:
ThomasMertes@reddit (OP)
Examples like these are in the strategy paper of the European Commission.
ProdigySorcerer@reddit
Thank you, very interesting.
fill-me-up-scotty@reddit
What’s today’s date?
booch@reddit
It was my understanding that there's nothing wrong with this. The "unsafe" keyword in Rust doesn't mean "bad". Rather, it acts as a way to highlight where such code is being used. And, by knowing where that code is, you can pay attention to it. Ie, "this type of code can't be avoided, but we can use it in a way that's less likely to cause problems".
hk19921992@reddit
It was hard choice between brain fuck and seed7
Kwantuum@reddit
/r/Angryupvote
EnGammalTraktor@reddit
Haha! good one
Just stupid enough to be credible. Bravo!
MileiMePioloABeluche@reddit
Demanding the standarized use of a programming language across the industry is the most European Union thing possible so I'm going to believe it's true
jolly-crow@reddit
You a**holes you got me! 🤣🤣
RabbitDev@reddit
Will there be a proper DIN standardisation for this proposal? I'm willing to donate fax machines for achieving the most efficient communication between the members of the standardisation committee.
-1_0@reddit
LUA FTW /s
BlueGoliath@reddit
NULL in Java is almost entirely a walled garden construct. You can't crash the JVM from it or normally corrupt heap memory like C.
Seed7 somehow allocates memory and works with file descriptors without interacting with C? Thanks for the laugh.
ThomasMertes@reddit (OP)
The European Commission prepares a strategy paper about the Linux kernel as well. So far it considers the move to rewrite parts of the Linux kernel in Rust as positive. The Linux kernel strategy paper will take longer and is proposed to be released next year. Probably at the beginning of April.
BlueGoliath@reddit
IIRC Rust in the Linux kernel has to reduce safety in order to work at all because kernel level code requires doing things that is inherently unsafe like e.g. viewing memory as an opaque byte segment.
But regardless, what about hardware/firmware bugs?