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