bazel__book/p26_28/graph_demo/tool.cc

8 lines
90 B
C++

#include <stdio.h>
int answer();
int main() {
printf("%d\n", answer());
return 0;
}