10 lines
114 B
Go
10 lines
114 B
Go
//go:build !solution
|
|
|
|
package main
|
|
|
|
func main() {
|
|
panic("implement me")
|
|
|
|
// main must keep running
|
|
select {}
|
|
}
|