mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-01-24 02:10:05 +08:00
19 lines
167 B
Go
Vendored
19 lines
167 B
Go
Vendored
package test
|
|
|
|
/*
|
|
#cgo pkg-config: python3
|
|
#include <stdlib.h>
|
|
#include <Python.h>
|
|
*/
|
|
import "C"
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
)
|
|
|
|
func main() {
|
|
fmt.Printf()
|
|
os.Rename()
|
|
C
|
|
}
|