13 lines
152 B
Plaintext
13 lines
152 B
Plaintext
|
module X [system] {
|
||
|
header "X.h" // imports Y
|
||
|
export *
|
||
|
}
|
||
|
module Y {
|
||
|
header "Y.h"
|
||
|
export *
|
||
|
}
|
||
|
module Z {
|
||
|
header "Z.h" // imports Y
|
||
|
export *
|
||
|
}
|