The include declaration imports all types, functions and constants from the specified files and their included files.
The import declaration imports only public types, functions and constants from the specified files and their included files. Public objects are defined using the pub keyword.
pub const IOTA { // public constants. Visible when include or import
MY1
MY2
}
const IOTA*2 { // private constants. Visible only when include
MY3
MY4
}