mirror of
https://github.com/goplus/llgo.git
synced 2025-09-27 03:56:05 +08:00
12 lines
145 B
Go
12 lines
145 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/goplus/llgo/xtool/env"
|
|
)
|
|
|
|
func main() {
|
|
fmt.Println(env.ExpandEnv("$(pkg-config --libs bdw-gc)"))
|
|
}
|