brintos

brintos / llvm-project-archived public Read only

0
0
Text · 137 B · 168fc9c Raw
11 lines · c
1#include <stdio.h>2 3int sum(int x, int y) {4  return x + y;5}6 7int main() {8  printf("Set a breakpoint here.\n");9  return sum(-1, 1);10}11