package main import "fmt" func debugLog(debug bool, print string) { if debug { fmt.Println(print) } } /* TODO: add other debuging code here so it's be more simple to read bf.go */