From fa3149c660cf2123b0d9fa38cbea82641eaa3c79 Mon Sep 17 00:00:00 2001 From: xushiwei Date: Mon, 13 May 2024 01:27:02 +0800 Subject: [PATCH] Update README.md --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index e1863580..0a23d509 100644 --- a/README.md +++ b/README.md @@ -46,7 +46,9 @@ func main() { } ``` -Here, We call `py.Float(2)` to create a Python floating point number 2, and pass it to Python’s `math.sqrt` to get `x`. Then use `x.Float64()` to convert the Python object to Go's `float64` type, and finally we print the value through C `printf`. +Here, We call `py.Float(2)` to create a Python number 2, and pass it to Python’s `math.sqrt` to get `x`. Then use `x.Float64()` to convert x to Go's `float64` type, and print the value through the C `printf` function. + +See [github.com/goplus/llgo/py](https://pkg.go.dev/github.com/goplus/llgo/py) for more detials. ## Other frequently used libraries