summaryrefslogtreecommitdiffstats
path: root/misc/cgo/fortran/fortran.go
diff options
context:
space:
mode:
Diffstat (limited to 'misc/cgo/fortran/fortran.go')
-rw-r--r--misc/cgo/fortran/fortran.go12
1 files changed, 12 insertions, 0 deletions
diff --git a/misc/cgo/fortran/fortran.go b/misc/cgo/fortran/fortran.go
new file mode 100644
index 0000000..0079b53
--- /dev/null
+++ b/misc/cgo/fortran/fortran.go
@@ -0,0 +1,12 @@
+// Copyright 2016 The Go Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style
+// license that can be found in the LICENSE file.
+
+package fortran
+
+// int the_answer();
+import "C"
+
+func TheAnswer() int {
+ return int(C.the_answer())
+}