aboutsummaryrefslogtreecommitdiffstats
path: root/test.c
diff options
context:
space:
mode:
authorYann Herklotz <ymherklotz@gmail.com>2018-03-10 21:37:11 +0000
committerYann Herklotz <ymherklotz@gmail.com>2018-03-10 21:37:11 +0000
commit2e124e11be8b88458f4fe8b8eb1ec0ff66a34eb7 (patch)
tree07e423b897ec6914dd27496528b21b93dcd883a3 /test.c
parente3f93f203a1b47a31fef21219955335476857d90 (diff)
downloadCompiler-2e124e11be8b88458f4fe8b8eb1ec0ff66a34eb7.tar.gz
Compiler-2e124e11be8b88458f4fe8b8eb1ec0ff66a34eb7.zip
Improving documentation
Diffstat (limited to 'test.c')
-rw-r--r--test.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/test.c b/test.c
deleted file mode 100644
index 4bfc9da..0000000
--- a/test.c
+++ /dev/null
@@ -1,10 +0,0 @@
-int main()
-{
- int x[4][3] = {
- { 1, 2 },
- { 3, 4, 5},
- { 6, 7, 8 }
- };
-
- return x[2][1];
-}