Compare commits

..

No commits in common. "workspace" and "master" have entirely different histories.

2 changed files with 1 additions and 4 deletions

View file

@ -22,6 +22,6 @@ func init() {
func Print(message ...any) {
if Enabled {
log.Println("["+Title+"]: ", message)
log.Println(Title, message)
}
}

View file

@ -16,7 +16,4 @@ func main() {
// Test debug.Print()
debug.Print("Hello World")
debug.Title = "Test Title"
debug.Print("Hello World")
}