Solod – A Subset of Go That Translates to C

(github.com)

39 points | by TheWiggles 2 hours ago

6 comments

  • Retr0id 1 hour ago
    I don't really "get" the sweet-spot being targeted here. You don't get channels, goroutines, or gc, so aside from syntax and spatial memory safety you're not really inheriting much from Go. There is also no pathway to integrate with existing Go libraries.

    Spatial memory safety is nice but it's the temporal safety that worries me most, in nontrivial C codebases.

    • tidwall 1 hour ago
      Looks to me like having the ability to write Go syntax and interop directly with C is the plus.
      • Retr0id 1 hour ago
        I do like Go's syntax but I can't help thinking the best language for C interop is C.
  • remywang 8 minutes ago
    Anton also wrote the fantastic codapi [1] for embedding executable code snippets with wasm

    [1]: https://codapi.org/

  • tidwall 1 hour ago
    "To keep things simple, there are no channels, goroutines, closures, or generics."

    I wonder if it could be integrated with https://github.com/tidwall/neco, which has Go-like coroutines, channels, and synchronization methods.

  • MYEUHD 57 minutes ago
    Related and currently on the front page: https://news.ycombinator.com/item?id=47627595
  • MegagramEnjoyer 12 minutes ago
    This is a bit too barebones. At least bring goroutines dude
  • Onavo 44 minutes ago
    Does it work with the preprocessor?