@code_report I if you like you may check the examples.cpp file, where I translated some of the problems in your videos to a C++ version using my experimental library.
@code_report Hey Conor, when I was watching your Uiua videos, I was fascinated by Uiua's concept of designing algorithms. I was wondering if it would make sense to translate this kind of stack-based function composition to C++ and tried to implement it: https://t.co/MiApNhiWUW
Bayern hat 2022 sechs Windräder gebaut. 6! In einem Jahr, in dem Putin allen gezeigt hat, dass Erneuerbare kein Öko- sondern ein Sicherheitsprojekt sind. Windkraftblockaden gefährden Demokratien. Auch dann, wenn sie bunte Windmühlen in der Hand halten.
Grüße aus der Wirklichkeit.
@OomenBerlin Bei reichen Eltern ab der Geburt, ansonsten durch Glück/Zufall irgendwann später oder nie. ("reich" im Sinne von deutlich überdurchschnittlichem Vermögen bezogen auf eine gegenwärtige Situation)
@lefticus I think a guideline for constexpr variables could be
[header file scope] inline constexpr
[source file scope] constexpr
[class scope] static constexpr
[function scope, small object] constexpr
[function scope, large object] static constexpr
@lefticus It's also worth mentioning that constexpr implies inline for static data members. So basically putting your constexpr global variable in a class scope (together with `static`) achieves the same as putting inline in front of it.