11 lines
115 B
C++
11 lines
115 B
C++
|
module;
|
||
|
|
||
|
#include "unity.h"
|
||
|
|
||
|
export module importable;
|
||
|
|
||
|
export int from_import()
|
||
|
{
|
||
|
return unity1() + unity2();
|
||
|
}
|