2015-08-10 07:26:06 +00:00
|
|
|
// Copyright 2015 The go-python Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
2022-06-19 08:58:22 +00:00
|
|
|
//go:build ignore
|
2015-08-10 07:26:06 +00:00
|
|
|
// +build ignore
|
|
|
|
|
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
|
|
|
|
"github.com/go-python/gopy/_examples/cpkg"
|
|
|
|
)
|
|
|
|
|
|
|
|
func main() {
|
|
|
|
fmt.Printf("hello from go\n")
|
|
|
|
cpkg.Hello("me")
|
|
|
|
fmt.Printf("bye me\n")
|
|
|
|
cpkg.Hello("you")
|
|
|
|
fmt.Printf("bye you\n")
|
|
|
|
}
|