Skip to content

Instantly share code, notes, and snippets.

@fallenarchon
fallenarchon / main.go
Last active July 18, 2016 17:34
Sample go client to listen for LCM packets broadcast over UDP multicast. https://lcm-proj.github.io/
package main
import (
"bytes"
"fmt"
)
func checkErr(err error) {
if err != nil {
panic(err)