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/conditional.c | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 test/conditional.c (limited to 'test/conditional.c') diff --git a/test/conditional.c b/test/conditional.c new file mode 100644 index 0000000..041e55b --- /dev/null +++ b/test/conditional.c @@ -0,0 +1,7 @@ +int main() { + int x = 2; + if (x > 1) + return 5; + else + return 2; +} -- cgit