19 lines
167 B
Go
19 lines
167 B
Go
package test
|
|
|
|
/*
|
|
#cgo pkg-config: python3
|
|
#include <stdlib.h>
|
|
#include <Python.h>
|
|
*/
|
|
import "C"
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
)
|
|
|
|
func main() {
|
|
fmt.Printf()
|
|
os.Rename()
|
|
C
|
|
}
|