How to split package?

Hey!

I am a bit new to package development but I started making a package and now it has been a bit clouded with funtionality. Say I want to split my module into two files:

PostSPH.jl (main file, which holds the module)
LightXMLTest.jl

How can I include the second file into the main file, without copying over the contents?

Or do I need to make one big source file having everything inside of the same module?

Kind regards

Try doing include(“LightXMLTest.jl”)

Thanks! Exactly what I wanted.

Kind regards