Z-Sharp/examples/Platformer/extra-include.zs
2022-05-25 07:25:14 -04:00

10 lines
206 B
Plaintext

// 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!"
}