Sfoglia il codice sorgente

Added test file to be compiled on SSH.

Taddeus Kroes 14 anni fa
parent
commit
b6b91c9cd3
1 ha cambiato i file con 7 aggiunte e 0 eliminazioni
  1. 7 0
      benchmarks/test.c

+ 7 - 0
benchmarks/test.c

@@ -0,0 +1,7 @@
+#include <stdio.h>
+
+int main(void) {
+    int a = 2, b = 5, c = a * b, d = a * 6, e = 3 * 7;
+
+    return 0;
+}