Programming tutorials revisited

Programming tutorials revisited

language_collage.png

Programming tutorials revisited

Hello everybody!
In my last Hive programming tutorial - which has been a while - I wrote an intro article about the Zig programming language, with the intent to write many more follow-up tutorials about Zig.

However, as Zig is still pretty new and developing as a language, I noticed that for quite some functionality Zig is "borrowing" from other languages (mostly C) via bindings to external modules. In and by itself that is not an issue for a language, especially considering how Zig aims to become "a better C" and can even function as a C (cross-) compiler on its own. On the other hand, when writing an extensive programming tutorial series about Zig (like I had planned to do) I noticed myself (in the draft stages of writing the Zig tutorials) often explaining C-specific language constructs, semantics and idioms.

Hence, while still writing concepts / drafts for the aforementioned follow-up Zig tutorials, I was venturing into other - somewhat similar - new (systems programming) languages, such as Odin, but also Go lang and Rust (and quite some more!) initially for R&D on how those languages handle certain functionality (which is an enormous territory ranging from cryptography to graphics and game engines and concurrency programming, foreign function interfaces/ external language interoperability etc. etc.)

Odin

Regarding Odin I came to the conclusion of it being in a similar stage (as a language) as Zig is, arguably. After very careful studying I came to the conclusion ( personal preference mostly) how much I like Odin's language syntax and semantics.

// Returns a Fibonacci sequence with a given length
fib :: proc(seqlen: int) -> (seq: [dynamic]int) {
    a, b: int = 0, 1
    for len(seq) < seqlen {
        append(&seq, a)
        a, b = b, a+b
    }
    return seq
}

There is so much to say about Odin, but just to give an example with this Fibonacci sequence generator I wrote in Odin, I think this summarize quite nicely some of the language specifics, for example:

  • (like Zig) Odin also aims to be a better C,
  • is purely procedural (hence proc()),
  • is statically typed,
  • has variadic input arguments (not shown here as there's only one argument being seqlen),
  • has named return values (in this case seq, which means there's no need to explicitly declare nor instantiate it in the function body),
    and so on and so forth. I like Odin a lot!.

But .... Odin like Zig at the moment also often resorts to external ( mostly C and C++ bound) repositories, as the Odin language too is working towards a v.1.0 version. And as such I was wondering if writing an extensive Odin tutorial series wouldn't rather quickly (in a matter of 2 or 3 years speaking) get outdated as the language is still in a heavy state of flux and over time perhaps more "native" repositories would emerge instead of the current C-bindings.

Rust

Rust is still relatively young but a bit older as Zig and Odin (it began in 2006 iirc). Contrary to Zig and Odin, Rust seems to aim to be a better C++, focusing mostly on a rather unique approach to memory safety (with the infamous "borrow checker"). Rust is backed by Mozilla, where it also emerged from originally, which has probably contributed to steady community growth and therefore Rust has now surpassed the stages of needing to resort to external language bindings (in many areas) and now a large ecosystem of native Rust packages ( called "Crates" in Rust terminology) - extending the standard library - exists at Crates.io.

However, while Rust is a great language with immense potential it is also a Huge language with a steep and long learning curve; a lot can be said about Rust but not that it's simple to get into let alone master. So, as a consequence, I figured I'd need quite a lot of Rust tutorial to cover the basic language constructs before being able to get into interesting project tutorials.

golang.png

Go ("Golang")

And then there is Go, slightly younger than Rust (Go was founded in 2009), and backed by Google. Go more or less also (like Zig and Odin) aims to be a better C and be "simple", it's also the only language of the four discussed here which does not have manual memory management but instead resorts to using a Garbage Collector (GC). As such I used to be of the opinion ( perhaps wrongfully so!) that Go shouldn't be considered a "systems programming language" for using a Garbage Collector, but it should! Many game devs shrug at GC-languages for game development and other graphics intensive use cases, but I think that is a mistake, as game engine Ebiten and 2d graphics / drawing / UI engine Gio UI prove!

And I was digging deeper and deeper into the rabbit hole of modern systems programming languages, more and more I got convinced how nice and most probably undervalued the Go programming language is!
To name a few things:

  • the Go language is deliberately kept as simple as possible, contrary to Rust which has language paradigms for just about every language feature under the sun;
  • as such it can be covered in relatively few tutorial episodes before digging deeper into interesting and novel projects to discuss;
  • unlike Zig and Odin, and like Rust, Golang has exceeded the stages of needing to resort to external ( C , C++ ) language bindings and instead has native solutions;
  • which could be available from within the standard library even which is vast and of high quality;
  • can be used for a lot more programming areas as backend web development where Go seems to have been gaining most traction in recently (and it is proficient there but not only there );
  • has exceptional support for concurrency programming as compared to the other languages. Not that concurrency would not be possible in Odin, Zig, Rust - on the contrary - but in Go novel and lightweight approaches (via for example Go routines, channels, waitgroups) are available out of the box, which makes Go very interesting also for many crypto- / trading related use cases;
  • can be cross-compiled from one OS and architecture to another - meaning development and deployment environments become interoperable. One notable tool developed in Go itself is Docker, which focuses on containerizing applications, but Go itself can nowadays also statically embed assets into a so-called "Fat Binary", enabling one-file cross-platform / cross-architecture app deploys (!!);
  • ... yet is still underexposed in my opinion in terms of developer attention wich could partly explains the relatively small amount (compared to languages like JavaScript, Python) of available online tutorials on various topics.

You guessed it by now: let's Go!

So, I decided to (instead of the planned Zig tutorial series) instead write an extensive series (like I previously did with my Learn Python series) about Go!

Let's Go! ,
Thanks for reading and see you at the next post!



0
0
0.000
4 comments
avatar

I only know Rust from all of them! but i am curious about the other ones!

Curious about HivePakistan? Join us on Discord!

Delegate your HP to the Hivepakistan account and earn 90% of curation rewards in liquid hive!

50 HP
100 HP
200 HP
500 HP (Supporter Badge)
1000 HP
Follow our Curation Trail and don't miss voting!

Join Binance through this LINK for 10% off trading fees! Let's save together!

0
0
0.000
avatar

Oh nice! Then the upcoming Golang series is definitely interesting for you! While a lot of language constructs that are present in Rust are absent in Go, both are to be considered systems programming languages, but because of how much smaller Go is (as a language) compared to Rust, you'll see (in many cases I assume) how much simpler a solution will be in Go as compared to Rust.

Do follow along! And thanks for reading this intro too!

0
0
0.000
avatar

Thanks for your contribution to the STEMsocial community. Feel free to join us on discord to get to know the rest of us!

Please consider delegating to the @stemsocial account (85% of the curation rewards are returned).

You may also include @stemsocial as a beneficiary of the rewards of this post to get a stronger support. 
 

0
0
0.000