From c42701c094de990670f2491c3d64d49cb9333c3f Mon Sep 17 00:00:00 2001 From: hans Date: Wed, 30 Jul 2025 15:45:13 +0800 Subject: [PATCH] =?UTF-8?q?=E4=B8=8A=E4=BC=A0=E6=96=87=E4=BB=B6=E8=87=B3?= =?UTF-8?q?=20funcext?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- funcext/demo_function1.tsf | 4 ++++ funcext/demo_function2.tsf | 4 ++++ 2 files changed, 8 insertions(+) create mode 100644 funcext/demo_function1.tsf create mode 100644 funcext/demo_function2.tsf diff --git a/funcext/demo_function1.tsf b/funcext/demo_function1.tsf new file mode 100644 index 0000000..cdeec91 --- /dev/null +++ b/funcext/demo_function1.tsf @@ -0,0 +1,4 @@ +Function demo_function1(msg); +Begin + echo "demo_function1:", msg, "\n"; +End; \ No newline at end of file diff --git a/funcext/demo_function2.tsf b/funcext/demo_function2.tsf new file mode 100644 index 0000000..cd55700 --- /dev/null +++ b/funcext/demo_function2.tsf @@ -0,0 +1,4 @@ +Function demo_function2(msg); +Begin + echo "demo_function2:", msg, "\n"; +End; \ No newline at end of file