Cross Compiling Go Application for Raspberry Pi
Cross Compiling Go Programs for Raspberry Pi
Lets write a simple hello world program
package main
import "fmt"
func main() {
fmt.Println("Hello World")
}
Inside the project directory run the following command. This will create a binary compatibl...
mindwings.hashnode.dev1 min read