7 comments

  • Lucasoato1 hour ago
    &gt; Ü is heavily inspired by C++, but doesn&#x27;t have its downsides. Also it was influenced by Rust, but only slightly and thus is way easier to use in comparison to Rust. Any possible coincidence with design and features of other programming languages is unintentional.<p>Blessed are the humble, for they shall be humbled.
    • kahrl13 minutes ago
      It always starts with one naive idiot though.
  • theamk21 minutes ago
    &gt; Ü uses RAII for memory and resources management (no GC is involved), but manual memory management may be still used in unsafe code.<p>Saying &quot;using RAII for memory management&quot; is insufficient - with just RAII, you cannot even assign a class into a passed-in variable. The language designer _must_ make make more choices to get a useful language - maybe affine types, or linear types, or prohibit many C++-like idioms, or maybe just good-old refcounted shared pointers (but I&#x27;d argue this is a form of GC...)<p>&gt; Ü is memory-safe and race-condition-safe, as long as no unsafe code is involved at all or as long as unsafe code is correctly written.<p>How is this achieved? The docs mention in passing that there is some sort of thread-safe immutable structs, but it is not really clear what&#x27;s the overall picture and how they interact with non-trivial code. And the examples have nothing on thread.
  • bob0011 hour ago
    The README makes me never want to use this. A career of seeing the same style from shit vendor salespeople has made me assume that under the hood is nothing but snakes.
  • onlyrealcuzzo1 hour ago
    Just a suggestion... you might want to include an example on your main README.<p>As someone building a language myself, I&#x27;m interested in the other languages actively in development...<p>But you start with an info dump, no examples, and then a table of features - where the first feature is not something anyone would pick a language for.<p>You claim to be a memory safe language... And those are buried in the middle of the list. You want to highlight that, and say how you accomplish it. You say you have no GC, but no mention of Affine Ownership or Ref Counting. You talk about thread safety, but no mention of how.<p>You need to show <i>WHY</i> anyone should care about your language, what problem it&#x27;s solving, and what that looks like as fast as possible.<p>In your comparison table, you leave out Go and include Odin - that seems like a mistake. Go punches <i>FAR</i> above its weight class. Dismissing it because it &quot;comes with a heavy runtime&quot; is likely to get your project dismissed, no offense. Odin is - essentially - experimental.<p>People&#x27;s attention is fleeting.<p>Everyone and their mother is building a language or two...<p>Some things I want to know right away:<p>1) what stage are you at (honestly, not wishfully)?<p>2) what problems have you <i>ACTUALLY</i> solved instead of <i>INTEND</i> to solve at some point in the future?<p>3) how thorough is your testing, what do you have, how much, what&#x27;s the coverage by category?<p>4) this seems like a performance language - I want benchmarks. If you don&#x27;t have a good concurrency story, you better have something, and you better have convincing benchmarks that it <i>actually</i> works, otherwise - why is anyone from Go or Rust or Zig or Nim or Crystal or Swift or even Java&#x2F;Kotlin&#x2F;Scala or C# going to think about switching?
    • throw3857391 hour ago
      For those interested, I found code examples here: <a href="https:&#x2F;&#x2F;github.com&#x2F;Panzerschrek&#x2F;U-00DC-Sprache&#x2F;tree&#x2F;master&#x2F;source&#x2F;examples" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;Panzerschrek&#x2F;U-00DC-Sprache&#x2F;tree&#x2F;master&#x2F;s...</a>
    • deterministic1 hour ago
      All good points. I have sent a link to this page to the author of the language (Panzerschrek).
      • rirze1 hour ago
        I hope the author is ok with this kind of publicity. He might not have wanted attention if the language is not ready for public opinion.
  • dexwiz1 hour ago
    Bold claims with no examples. Anyone can make a markdown chart with some pros and cons. Description by comparison is weak.
  • AdieuToLogic1 hour ago
    11775 commits in about a year is... concerning.
    • ricardobeat1 hour ago
      Something is wrong with that commit count. There are a total of ~4k commits over nine years [1].<p>It looks like the author revived the project recently with the help of AI, but the majority of commits are from 2017-2024. Github might be counting all the branch activity from agents.<p>[1] <a href="https:&#x2F;&#x2F;github.com&#x2F;Panzerschrek&#x2F;U-00DC-Sprache&#x2F;graphs&#x2F;contributors?from=6%2F1%2F2024" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;Panzerschrek&#x2F;U-00DC-Sprache&#x2F;graphs&#x2F;contri...</a>
      • AdieuToLogic42 minutes ago
        From the description of the graph you kindly provided:<p><pre><code> Contributions per week to master, line counts have been omitted because commit count exceeds 10,000. </code></pre> So I am confused as to the &quot;total of ~4k commits over nine years&quot; determination, unless this is in reference to commits Panzerschrek has made spanning the last two years (not nine).
  • jimbob4547 minutes ago
    Are there plans to bring in compile-time attributes like C#? I really like what I’m seeing here apart from the lack of that.<p>Edit: also the name is ungoogleable.