diff options
author | Peter Mora <morapeter@gmail.com> | 2015-10-05 22:41:54 +0200 |
---|---|---|
committer | Peter Mora <morapeter@gmail.com> | 2015-10-05 22:42:22 +0200 |
commit | 75097e2981e470197fa5649557875a9f60385973 (patch) | |
tree | 07f91724132a978ad267f8e9a920fa8d14ee255d /tests/parser | |
parent | 0a8a2070d01489d036ececa78c87ef94325d3e9d (diff) | |
download | Nim-75097e2981e470197fa5649557875a9f60385973.tar.gz |
sequtils related changes
Diffstat (limited to 'tests/parser')
-rw-r--r-- | tests/parser/tcommand_as_expr.nim | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/parser/tcommand_as_expr.nim b/tests/parser/tcommand_as_expr.nim index 730e9cbb7..a244c8767 100644 --- a/tests/parser/tcommand_as_expr.nim +++ b/tests/parser/tcommand_as_expr.nim @@ -5,6 +5,7 @@ discard """ 77''' """ #import math +import sequtils proc optarg(x:int, y:int = 0):int = x + 3 * y proc singlearg(x:int):int = 20*x |