aboutsummaryrefslogtreecommitdiff
path: root/tmp/main.c
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--tmp/main.c12
1 files changed, 0 insertions, 12 deletions
diff --git a/tmp/main.c b/tmp/main.c
deleted file mode 100644
index 0ae18f7..0000000
--- a/tmp/main.c
+++ /dev/null
@@ -1,12 +0,0 @@
-#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;
-}