HackerTrans
トップ新着トレンドコメント過去質問紹介求人

tajpulo

no profile record

投稿

Move semantics in Rust, C++, and Hylo

lukas-prokop.at
103 ポイント·投稿者 tajpulo·2 年前·123 コメント

What Is PDF?

news.speedata.de
2 ポイント·投稿者 tajpulo·2 年前·0 コメント

A relationship between Esperanto and the Open Source movement

lukas-prokop.at
2 ポイント·投稿者 tajpulo·2 年前·0 コメント

コメント

tajpulo
·2 年前·議論
I think we have a similar way of thinking. I once wrote a blog post about a for loop extension (based on Golang for illustration) [0].

  values := []string{"hello", "world"}
  for v, value := range values {
    fmt.Printf("%s", value);
  }
  inter {
    fmt.Printf(",")
  }
  before {
    fmt.Printf("[")
  }
  after {
    fmt.Println("]")
  }
  empty {
    fmt.Println("(nothing found)")
  }
[0] https://lukas-prokop.at/articles/2024-04-24-for-loop-extensi...
tajpulo
·2 年前·議論
And which blocks of Unicode exactly would you exclude from support and what complexity reduction do you exactly expect from it?

In my experience, the complexity comes from the reality of how we write in different writing systems. I think this is inevitable.