1//go:build windows
2// +build windows
3
4package main
5
6import "C"
7
8//export Dummy
9func Dummy() int {
10	return 42
11}
12
13func main() {}
14