From 7a76e9d632756a4d3f044d6742a5defb83ce6ae7 Mon Sep 17 00:00:00 2001 From: Yann Herklotz Date: Thu, 2 Apr 2020 14:53:39 +0100 Subject: Add tests --- test/add.c | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 test/add.c (limited to 'test/add.c') diff --git a/test/add.c b/test/add.c new file mode 100644 index 0000000..ab03976 --- /dev/null +++ b/test/add.c @@ -0,0 +1,6 @@ +int main () { + int x = 1; + int y = 2; + int z = x + y; + return z; +} -- cgit