1
0
mirror of https://github.com/chai2010/advanced-go-programming-book.git synced 2025-05-24 12:32:21 +00:00
2018-01-05 22:14:23 +08:00

10 lines
104 B
Go

package main
// #cgo CXXFLAGS: -std=c++11
// extern void Main();
import "C"
func main() {
C.Main()
}