Skip to content

Instantly share code, notes, and snippets.

00-0000.AUD |McCoy: "You know who deals in insects down here?"
00-0005.AUD |McCoy: "No thanks. I got a dog at home."
00-0010.AUD |McCoy: "No, my dog is real."
00-0015.AUD |McCoy: "Let's get back to insects. Official LPD business."
00-0025.AUD |McCoy: "She."
00-0030.AUD |McCoy: "Anything unusual happening down here?"
00-0035.AUD |McCoy: "I'll pass."
00-0040.AUD |McCoy: "Is this scale from a fish?"
00-0045.AUD |McCoy: "What other one?"
00-0050.AUD |McCoy: "How could you tell I was police?"
@madmoose
madmoose / day07a-sample.go
Created December 8, 2015 10:01
Advent of Code 2015 day 7 scanf parsing example
func main() {
scanner := bufio.NewScanner(os.Stdin)
for scanner.Scan() {
line := scanner.Text()
var (
mnemonic Mnemonic
src1, src2, dst string
)