bazel__book/p30_33/inc_demo/main.cc

10 lines
155 B
C++

#include <stdio.h>
#include "add.h"
#include "upper.h"
int main() {
char msg[] = "ok";
upper(msg);
printf("%s %d\n", msg, add(2, 3));
return 0;
}