summary refs log tree commit diff stats
path: root/tests/benchmarks/fannkuch.nim
diff options
context:
space:
mode:
Diffstat (limited to 'tests/benchmarks/fannkuch.nim')
-rw-r--r--tests/benchmarks/fannkuch.nim6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/benchmarks/fannkuch.nim b/tests/benchmarks/fannkuch.nim
index 15f78f50c..55405b3c9 100644
--- a/tests/benchmarks/fannkuch.nim
+++ b/tests/benchmarks/fannkuch.nim
@@ -2,7 +2,7 @@ import os
 import strutils
 
 proc fannkuch (n: int): int =
-    var 
+    var
         count: seq[int]
         maxFlips = 0
         m        = n-1
@@ -58,7 +58,7 @@ proc fannkuch (n: int): int =
                 for i in 0 .. r-1:
                     perm1[i] = perm1[i+1]
                 perm1[r] = tmp
-                
+
                 dec (count[r])
                 if count[r] > 0:
                     break makePerm
@@ -66,4 +66,4 @@ proc fannkuch (n: int): int =
             return maxFlips
 
 var n = 10
-echo ("Pfannkuchen(" & $n & ") = " & $fannkuch (n))
\ No newline at end of file
+echo ("Pfannkuchen(" & $n & ") = " & $fannkuch (n))