X-Git-Url: http://nitlanguage.org diff --git a/tests/bench_string_super.nit b/tests/bench_string_super.nit index ad27304..88b001a 100644 --- a/tests/bench_string_super.nit +++ b/tests/bench_string_super.nit @@ -14,10 +14,13 @@ # See the License for the specific language governing permissions and # limitations under the License. +var n = 10 +if args.not_empty then n = args.first.to_i + var s = "*" -var i = 0 -while i < 8 do +var i = 1 +while i < n do s = "Je dis «{s}» et redis «{s}» et trois fois de plus : «{s}{s}{s}».\n" i = i + 1 end -print(s.length) +print s.bytelen