TheMathemagicians/sevenkeys/main.go

17 lines
149 B
Go
Raw Normal View History

2024-04-04 13:55:12 +00:00
package main
import (
"fmt"
2024-05-21 11:17:50 +00:00
"log"
2024-04-04 13:55:12 +00:00
)
2024-05-21 11:17:50 +00:00
func check(err error) {
if err != nil {
log.Fatal(err)
}
}
2024-04-04 13:55:12 +00:00
func main() {
2024-05-21 11:17:24 +00:00
fmt.Println("Hello, world")
2024-04-04 13:55:12 +00:00
}