• qazOP
    link
    41 year ago

    I just tested it and a simple hello world program still produces a 1.7MiB binary, while the device only has 512KiB of RAM.

    package main
    
    import "fmt"
    
    func main() {
        fmt.Println("hello world")
    }
    
    • @[email protected]
      link
      fedilink
      31 year ago

      Strip the debug info, should be a lot smaller. Also check out TinyGo, it’s meant for embedded devices