summaryrefslogtreecommitdiff
path: root/tests/projects/embed/verilator/modules/src/mod.mpp
blob: dcbf2ee7125ef9e0b395a300d8d614fd695c3182 (plain)
1
2
3
4
5
6
7
8
9
10
module;
#include <cstdio>

export module mod;

export namespace mod {
    void say(const char* str) {
        printf("%s\n", str);
    }
}