From 56e387085926d7990f690198f73186a546cdae1f Mon Sep 17 00:00:00 2001 From: xushiwei Date: Mon, 8 Jul 2024 00:46:06 +0800 Subject: [PATCH] pyhello --- testdata/_llgo/errors/errors.gop | 2 -- testdata/_llgo/pyhello/hello.gop | 3 +++ 2 files changed, 3 insertions(+), 2 deletions(-) create mode 100644 testdata/_llgo/pyhello/hello.gop diff --git a/testdata/_llgo/errors/errors.gop b/testdata/_llgo/errors/errors.gop index c362bcd4c..10c26ba64 100644 --- a/testdata/_llgo/errors/errors.gop +++ b/testdata/_llgo/errors/errors.gop @@ -1,7 +1,5 @@ import ( "c" - - "github.com/goplus/llgo/c" ) // New returns an error that formats as the given text. diff --git a/testdata/_llgo/pyhello/hello.gop b/testdata/_llgo/pyhello/hello.gop new file mode 100644 index 000000000..a30148a6f --- /dev/null +++ b/testdata/_llgo/pyhello/hello.gop @@ -0,0 +1,3 @@ +import "py/std" + +std.print py"Hello world"