aboutsummaryrefslogtreecommitdiffstats
path: root/example/main.c
diff options
context:
space:
mode:
authorYann Herklotz <git@yannherklotz.com>2020-02-14 21:02:44 +0000
committerYann Herklotz <git@yannherklotz.com>2020-02-14 21:02:44 +0000
commitff40ff40ee967f6fd9206ef8c86426b0ea33cbde (patch)
tree81bfa37c75c73feb0131a2856c20ec81357222a2 /example/main.c
parentc1f2c2e386c2597fdc61509ab2376f61f120c119 (diff)
downloadvericert-ff40ff40ee967f6fd9206ef8c86426b0ea33cbde.tar.gz
vericert-ff40ff40ee967f6fd9206ef8c86426b0ea33cbde.zip
Update driver
Diffstat (limited to 'example/main.c')
-rw-r--r--example/main.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/example/main.c b/example/main.c
new file mode 100644
index 0000000..6bd3334
--- /dev/null
+++ b/example/main.c
@@ -0,0 +1,9 @@
+int main() {
+ int x;
+ int y;
+ int z;
+ y = 2;
+ z = 3;
+ x = y * z;
+ return x;
+}