From b87eaea86156f1a04bd82d436cb6b16e5bce97e8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A1s=20B=20Nagy?= <20251272+BNAndras@users.noreply.github.com> Date: Wed, 22 Jul 2026 22:50:44 -0700 Subject: [PATCH] Update snippet to return, not print --- docs/SNIPPET.txt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/SNIPPET.txt b/docs/SNIPPET.txt index 5ecdf066..19575399 100644 --- a/docs/SNIPPET.txt +++ b/docs/SNIPPET.txt @@ -1,5 +1,5 @@ -Public Module modmain - Sub Main() - Console.WriteLine ("Hello World!") - End Sub +Public Module HelloWorld + Public Function Hello() As String + Return "Hello, World!" + End Function End Module