mirror of https://github.com/go-python/gopy.git
26 lines
523 B
Go
26 lines
523 B
Go
![]() |
// 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.
|
||
|
|
||
|
// package hi exposes a few Go functions to be wrapped and used from Python.
|
||
|
package hi
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
)
|
||
|
|
||
|
// Hi prints hi from Go
|
||
|
func Hi() {
|
||
|
fmt.Printf("hi from go\n")
|
||
|
}
|
||
|
|
||
|
// Hello prints a greeting from Go
|
||
|
func Hello(s string) {
|
||
|
fmt.Printf("hello %s from go\n", s)
|
||
|
}
|
||
|
|
||
|
// Add returns the sum of its arguments.
|
||
|
func Add(i, j int) int {
|
||
|
return i + j
|
||
|
}
|