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 +}