From 65f88cc64e5c6c62dd1a1b78d025011d45fc646b Mon Sep 17 00:00:00 2001 From: xushiwei Date: Thu, 9 May 2024 20:33:39 +0800 Subject: [PATCH] demo: hellopy (python) --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 1cad539a..6f32a5c6 100644 --- a/README.md +++ b/README.md @@ -46,6 +46,7 @@ The `_demo` directory contains our demos (it start with `_` to prevent the `go` * [qsort](_demo/qsort/qsort.go): call C function with a callback (eg. qsort) * [genints](_demo/genints/genints.go): various forms of closure usage (including C function, recv.method and anonymous function) * [llama2-c](_demo/llama2-c): inference Llama 2 (It's the first llgo AI example) +* [hellopy](https://github.com/goplus/cpython/blob/main/_demo/hellopy/hello.go): link Python to Go and say `Hello world` ### How to run demos