prosseek
prosseek

Reputation: 190979

What does it mean by a 'systems language'?

The Go talk 2009 pdf has a comment to explain why they came up with the go language :

No new major systems language in a decade.

What's the meaning of systems language?

I can see C#/Java is `not' a systems language, and C/C++ is.

Upvotes: 8

Views: 4603

Answers (2)

Derrick Turk
Derrick Turk

Reputation: 4336

It's a rough, informal distinction, but the idea is that there are "application programming languages," targeted at programmers who develop shrinkwrapped business applications, and "systems programming languages," targeted at programmers who program tools for other programmers (compilers, etc.) and low-level software such as OS kernels, device drivers, etc.

In short, most (recently-invented, anyway) languages are designed to make it easier to develop user-facing software for dealing with some non-computing domain---finance, engineering, etc. Systems programming languages are those, such as C, FORTH, Go, etc. which are intended or at least suitable for programming in the domain of computing.

These often, but do not always, feature compilation to native code, loose type systems which permit extensive "punning," and unmanaged memory access through pointers or an equivalent construct.

Upvotes: 17

Kavet Kerek
Kavet Kerek

Reputation: 1315

Look here? Sorry if this comes off as sorta a throw away link, but really this should be all you need. Unless you are asking for something else more specific.

A reason C# is definitely not a systems language is its dependency on .NET.

Upvotes: 3

Related Questions