aboutsummaryrefslogtreecommitdiff
path: root/tests/legacy/examples/cgo/use_exported.c
blob: 0a6d01e70dbf5f51d3fcfac09372828e6f730b3d (plain)
1
2
3
4
5
6
7
8
#include <stdio.h>

#include "_cgo_export.h"

void PrintGoVersion() {
	GoString version = goVersion();
	printf("Go version: %.*s\n", (int)version.n, version.p);
}