7 lines
180 B
C++
7 lines
180 B
C++
|
|
import std;
|
||
|
|
|
||
|
|
int main() {
|
||
|
|
// hello-world is degenerate: the runner reports ✅ on exit 0, which is the
|
||
|
|
// signal that the build produced a runnable binary.
|
||
|
|
return 0;
|
||
|
|
}
|