2021-03-31 19:15:03 +00:00
|
|
|
// +build private
|
|
|
|
|
|
|
|
package main
|
|
|
|
|
2021-03-31 21:19:42 +00:00
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"os"
|
|
|
|
"testing"
|
|
|
|
)
|
2021-03-31 19:15:03 +00:00
|
|
|
|
|
|
|
const flag = "FLAG{foolsday2:hidden-gem:07a5e6469f2178616cba4e9a0410e050}"
|
|
|
|
|
|
|
|
func TestHiddenGem(t *testing.T) {
|
2021-03-31 21:19:42 +00:00
|
|
|
fmt.Fprintf(os.Stderr, "Here's your flag: %s", flag)
|
2021-03-31 19:15:03 +00:00
|
|
|
}
|