How much progress have you made since last time? What new ideas have you stumbled upon, what old ideas have you abandoned? What new projects have you started? What are you working on?

Once again, feel free to share anything you’ve been working on, old or new, simple or complex, tiny or huge, whether you want to share and discuss it, or simply brag about it - or just about anything you feel like sharing!

The monthly thread is the place for you to engage /c/programming_languages on things that you might not have wanted to put up a post for - progress, ideas, maybe even a slick new chair you built in your garage. Share your projects and thoughts on others’ ideas, and most importantly, have a great and productive month!

Also see: https://www.reddit.com/r/ProgrammingLanguages/comments/14ngaly/july_2023_monthly_what_are_you_working_on_thread/

  • MoriGM@feddit.de
    link
    fedilink
    English
    arrow-up
    1
    ·
    1 year ago

    Would be nice reading this. Crystal is a Dynamically typed but also staticly type compiled language.

      • MoriGM@feddit.de
        link
        fedilink
        English
        arrow-up
        2
        ·
        1 year ago

        https://crystal-lang.org/

        The language allows you to specify the return type of function. If it is not represent it it will try to find the type. It even allows multiple different types to be returned.

        • TheCee@programming.dev
          link
          fedilink
          English
          arrow-up
          1
          ·
          1 year ago

          But that happens at compile time, doesn’t it? So it infers types and returns a tagged union for multiple types? Kind of like how some programming languages return multiple values as tuples?