332
-Wall ain't all (lemmy.world)
submitted 11 months ago by qaz@lemmy.world to c/programmerhumor@lemmy.ml
you are viewing a single comment's thread
view the rest of the comments
[-] gredo@lemmy.world 2 points 11 months ago

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

[-] qaz@lemmy.world 4 points 11 months 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")
}
[-] pipe01@lemmy.pipe01.net 3 points 11 months ago

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

this post was submitted on 13 Oct 2023
332 points (95.9% liked)

Programmer Humor

32144 readers
121 users here now

Post funny things about programming here! (Or just rant about your favourite programming language.)

Rules:

founded 5 years ago
MODERATORS