brintos

brintos / llvm-project-archived public Read only

0
0
Text · 125 B · c82f953 Raw
10 lines · cpp
1#include "other.h"2 3int main() {4  int first = 5;5  int second = 10;6  const int result = add(first, second);7 8  return 0;9}10