xChaos 🐧🚀🐘🚲

Nedokončil studia na vysoké škole života. Mužský rod neživotný, kterému se tyká. Patřím do téhle části světa: 🇨🇿 🇪🇺 🇺🇦

Moderator of f.cz. We recycle waste heat of our datacenter to heat water for 15 apartments.

SpráFce obsahu instance f.cz. Odpadní teplo datacentra ISP SPOJE.NET, kde tohle běží, ohřívá vodu 15 bytům.

Solární cyklista, cestovatel. Linuxák (na desktopu), ex-programátor (Arachne), ex-muzikant. Fanoušek kosmického výzkumu, vědy a techniky. Zakládající člen Pirátů. Early adopter.

  • 0 Posts
  • 4 Comments
Joined 2 years ago
cake
Cake day: November 15th, 2022

help-circle
  • @beejjorgensen I spent so many time writing manual loops even in Basic, sometimes in ASM (on Z-80) later in C, but actually, abstraction level of manually written loops is relatively low.

    Ok, core concept in Python are iterable objects. Iterable objects are much, much more advanced abstraction, than manual loop - I and yes, I have spent many, many years writing manual loops again and again, later I added some macros, but still - in Python, it is not only less keystrokes, but the iterable object abstraction is something, which was absent in Fortran and C (maybe not in C++, but C++ was mostly pain)

    Syntactic sugar poured on iterable objects is maybe not so important, but in enviroments without certain core concepts, no amount of syntactic sugar will fix that.

    Think of it as it was in Basic: it had no pointers (unless you wished to peek and poke memory manually). C had pointers and pointer aritmetics, which was powerful abstraction, compared to Basic. You would need to manually call peek() function to read pointer… well, technically possible, but you would read one byte at a time, with no clue about data type, etc). C pointer is not just syntactic sugar over peek(), it is much more than that.

    And there are more and more such powerful abstraction, which are just absent in older languages. You can eg. call try ~ except (or catch, or whatever) syntactic sugar - well, maybe it is, but is sugar coated setjmp()/longjmp() call of libc, not sugar coated goto, as it may seem at the first glance…