• @gredo@lemmy.world
    link
    fedilink
    21 year ago

    Interesting, since golang only includes the parts of the stdlib that are used in the executable binary.

    • qazOP
      link
      fedilink
      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")
      }