Crafter.Build/tests/fixtures/with-module/main.cpp

7 lines
115 B
C++
Raw Normal View History

import std;
import Greeter;
int main() {
if (Greet("crafter") != "hello, crafter!") return 1;
return 0;
}