1
0
mirror of https://github.com/golang/go synced 2024-11-08 15:16:25 -07:00
go/misc/cgo/fortran/testdata/testprog/fortran.go

22 lines
420 B
Go
Raw Normal View History

// 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 main
// int the_answer();
import "C"
import "os"
func TheAnswer() int {
return int(C.the_answer())
}
func main() {
if a := TheAnswer(); a != 42 {
println("Unexpected result for The Answer. Got:", a, " Want: 42")
os.Exit(1)
}
println("ok")
}