shad-go/foolsday2/flag_test.go
2021-04-01 00:19:42 +03:00

15 lines
236 B
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)
}