shad-go/foolsday2/flag_test.go
2022-02-10 22:06:57 +00:00

15 lines
237 B
Go

//go:build private
package main
import (
"fmt"
"os"
"testing"
)
const flag = "FLAG{foolsday2:hidden-gem:07a5e6469f2178616cba4e9a0410e050}"
func TestHiddenGem(t *testing.T) {
fmt.Fprintf(os.Stderr, "Here's your flag: %s", flag)
}