From 3d8fca05ba1407964eeafdf9fa897af03a50236d Mon Sep 17 00:00:00 2001 From: sam-astro <77079540+sam-astro@users.noreply.github.com> Date: Wed, 25 May 2022 07:25:14 -0400 Subject: [PATCH] Add description --- examples/Platformer/extra-include.zs | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/examples/Platformer/extra-include.zs b/examples/Platformer/extra-include.zs index 29ef010..2cda6e0 100644 --- a/examples/Platformer/extra-include.zs +++ b/examples/Platformer/extra-include.zs @@ -1,5 +1,9 @@ +// This is an "included" ZS file, which can keep your main script +// tidier and more organized or easily share the same functions +// across multiple programs. + func TestInclude() { print "Hello World!" -} \ No newline at end of file +}