11 lines
313 B
Plaintext
11 lines
313 B
Plaintext
native :: import "../header/include/native.h"
|
|
child :: import "../header/include/child.h"
|
|
|
|
main func() void {
|
|
_ = native.child_value(1)
|
|
_ = child.child_value(2)
|
|
native.child_shared_global = 7
|
|
child.child_shared_global = native.child_shared_global
|
|
_ = native.child_shared_global + child.child_shared_global
|
|
}
|