aboutsummaryrefslogtreecommitdiff
path: root/tmp/main.c
blob: 0ae18f7a398bd2fcf9745e5b4adb3239a4ee80e8 (about) (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
#include <stdio.h>
#include "add.h"

int main() {
  int added = add(4, 5);
  printf("Adding 4 and 5: %d\n", added);

  persistInt(6);
  int persisted = retrieveInt();
  printf("Persisted number: %c\n", persisted);
  return 0;
}