From 1aed821649221309d433d30dfde7b6e0aed0ba26 Mon Sep 17 00:00:00 2001 From: blueloveTH Date: Thu, 2 May 2024 12:10:03 +0800 Subject: [PATCH] Update input.txt --- examples/05 Bind Simple Struct/input.txt | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/examples/05 Bind Simple Struct/input.txt b/examples/05 Bind Simple Struct/input.txt index d2203d8..46255e0 100644 --- a/examples/05 Bind Simple Struct/input.txt +++ b/examples/05 Bind Simple Struct/input.txt @@ -1,4 +1,6 @@ -p = Point(1, 2) +import test + +p = test.Point(1, 2) print(p.x, p.y)