diff options
author | Carlo Zancanaro <carlo@pc-4w14-0.cs.usyd.edu.au> | 2012-11-27 18:20:06 +1100 |
---|---|---|
committer | Carlo Zancanaro <carlo@pc-4w14-0.cs.usyd.edu.au> | 2012-11-27 18:20:06 +1100 |
commit | 839764bd955d2bddedb4a38ab1d4d92c797c56b9 (patch) | |
tree | ba18f19658c62f5d515d1bdadbf37969f9e99711 /tex/thesis/implementation/experiments/simple_while.c | |
parent | 8b9d3f9880824523c16a1101967987f998dc1cb4 (diff) |
Thesis and performance testing related stuff.
Diffstat (limited to 'tex/thesis/implementation/experiments/simple_while.c')
-rw-r--r-- | tex/thesis/implementation/experiments/simple_while.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/tex/thesis/implementation/experiments/simple_while.c b/tex/thesis/implementation/experiments/simple_while.c deleted file mode 100644 index 3bec629..0000000 --- a/tex/thesis/implementation/experiments/simple_while.c +++ /dev/null @@ -1,8 +0,0 @@ -int simple_while() { - int x = 1; - while (x <= 10) { - x = x + 1; - } - return x; -} - |